try to reload proxmox-backup-proxy on package upgrade

This commit is contained in:
Dietmar Maurer
2020-06-22 09:39:37 +02:00
parent f28cfb322a
commit b28253d650
4 changed files with 49 additions and 4 deletions

35
debian/postinst vendored Normal file
View File

@ -0,0 +1,35 @@
#!/bin/sh
set -e
#DEBHELPER#
case "$1" in
configure)
# modeled after dh_systemd_start output
systemctl --system daemon-reload >/dev/null || true
if [ -n "$2" ]; then
_dh_action=try-restart
else
_dh_action=start
fi
deb-systemd-invoke $_dh_action proxmox-backup.service >/dev/null || true
if [ -n "$2" ]; then
_dh_action=try-reload-or-restart
else
_dh_action=start
fi
deb-systemd-invoke $_dh_action proxmox-backup-proxy.service >/dev/null || true
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0