mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
11 lines
350 B
Text
11 lines
350 B
Text
post_install() {
|
|
getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
|
|
chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
|
|
echo "SSL is enabled by default, so you need to create pem files"
|
|
echo "unrealircd.conf needs adjustments"
|
|
echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|