blob: 18b2cf3db20aaf4277ee8dce5c7261ac39b59d3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
echo ""
echo "==> arch-native-client installed."
echo ""
echo " Configure the connection to your build server:"
echo " sudo cp /usr/share/arch-native-client/arch-native-client.conf.example \\"
echo " /etc/arch-native-client.conf"
echo " sudo \$EDITOR /etc/arch-native-client.conf"
echo ""
echo " The pacman hook will fire automatically after each transaction."
echo " Test manually with: sudo pkglist-export"
echo ""
}
post_upgrade() {
echo ""
echo "==> arch-native-client upgraded."
echo ""
}
|