post_install() {
  echo "Restarting CUPS server"

  systemctl restart org.cups.cupsd.service
  return $?
}

post_upgrade() {
  post_install
}

post_remove() {
  post_install
}
