post_install() {
  echo "Enabling systemd services"
         systemctl enable haveged
         systemctl enable upower.service
         systemctl enable udisks2.service
         systemctl enable avahi-daemon.service
         systemctl enable NetworkManager.service
         systemctl enable sddm.service
         systemctl enable ntpd.service
         systemctl enable bluetooth.service
         systemctl enable org.cups.cupsd
         systemctl enable live.service
}

post_upgrade() {
  post_install
}

pre_remove() {
   echo "Disabling systemd service"
         systemctl disable live.service
}
