diff --git a/scripts/postinst.sh b/scripts/postinst.sh
index 4287e0ce78ddaf011588c18b28ccdb2216122599..4e47ea6611e68311309b6214ccafd3bf0973d4c0 100755
--- a/scripts/postinst.sh
+++ b/scripts/postinst.sh
@@ -6,7 +6,7 @@ set -e
 #
 # TODO: This is only tested on Debian.
 #
-if [ "$1" = "configure" ] && [ -d /run/systemd/system ]; then
+if ( [ "$1" = "configure" ] || [ "$1" = "1" ] ) && [ -d /run/systemd/system ]; then
   # Create ntfy user/group
   id ntfy >/dev/null 2>&1 || useradd --system --no-create-home ntfy
   chown ntfy.ntfy /var/cache/ntfy
diff --git a/scripts/postrm.sh b/scripts/postrm.sh
index f34f6534b017856c39c84aa9bcaae51d15095aa1..10b2fd955c2c1c6dcfc197360ff1027d069b9106 100755
--- a/scripts/postrm.sh
+++ b/scripts/postrm.sh
@@ -2,7 +2,7 @@
 set -e
 
 # Delete the config if package is purged
-if [ "$1" = "purge" ]; then
+if [ "$1" = "purge" ] || [ "$1" = "0" ]; then
   id ntfy >/dev/null 2>&1 && userdel ntfy
   rm -f /etc/ntfy/server.yml /etc/ntfy/client.yml
   rmdir /etc/ntfy || true
diff --git a/scripts/preinst.sh b/scripts/preinst.sh
index d09528c4f6c036e4fd90ab2561a93346e233fe65..6918a14ecf4f6a4d966fa728d000bb3b40801345 100755
--- a/scripts/preinst.sh
+++ b/scripts/preinst.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -e
 
-if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then
+if [ "$1" = "install" ] || [ "$1" = "upgrade" ] || [ "$1" = "1" ]; then
   # Migration of old to new config file name
   oldconfigfile="/etc/ntfy/config.yml"
   configfile="/etc/ntfy/server.yml"
diff --git a/scripts/prerm.sh b/scripts/prerm.sh
index f3668550c11ed7e5017b8936de756c2756f296a9..fc0261918e5c67d4169dec26d5d0b4a1e1edc882 100755
--- a/scripts/prerm.sh
+++ b/scripts/prerm.sh
@@ -2,7 +2,7 @@
 set -e
 
 # Stop systemd service
-if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
+if [ -d /run/systemd/system ] && ( [ "$1" = remove ] || [ "$1" = "0" ] ); then
   echo "Stopping ntfy.service ..."
   if [ -x /usr/bin/deb-systemd-invoke ]; then
     deb-systemd-invoke stop 'ntfy.service' >/dev/null || true