blob: 16ab02c267ada19ea6f7af2f0a1d3907d51756dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
post_upgrade() {
if usr/bin/pacman-key -l >/dev/null 2>&1; then
usr/bin/pacman-key --populate archlinux-lcpu
fi
}
post_install() {
if [ -x usr/bin/pacman-key ]; then
post_upgrade
fi
}
|