10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
post_install() {
|
|
if [ ! -d /etc/pacman.d/ ]; then
|
|
pacman-key --init
|
|
fi
|
|
pacman-key --populate
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
} |