post_install() {
  getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
  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
}