summarylogtreecommitdiffstats
path: root/unrealircd.install
blob: edfe57882f7f84ebfebbd18e97ed6ed21ff9ec6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  getent passwd ircd >/dev/null || useradd -r ircd
  chown -R ircd etc/unrealircd var/log/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
}