mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
380 B
Text
12 lines
380 B
Text
post_install() {
|
|
getent passwd ircd >/dev/null || useradd -r ircd
|
|
chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
|
|
systemd-tmpfiles --create unrealircd.conf
|
|
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
|
|
}
|