blob: 274d8b13f80a3d9b566de96537a77e40aeff4c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "Create ircd user and chown /etc/unrealircd and /var/log/unrealircd recursively"
echo "SSL is enabled by default, so you need to create pem files"
echo "Also unrealircd.conf needs adjustments"
echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
}
post_upgrade() {
post_install
}
post_remove() {
echo "Don't forget to remove ircd user"
}
|