]> git.proxmox.com Git - proxmox-backup.git/blame - debian/postinst
update d/control
[proxmox-backup.git] / debian / postinst
CommitLineData
b28253d6
DM
1#!/bin/sh
2
3set -e
4
5#DEBHELPER#
6
7case "$1" in
8 configure)
9 # modeled after dh_systemd_start output
10 systemctl --system daemon-reload >/dev/null || true
b28253d6
DM
11 if [ -n "$2" ]; then
12 _dh_action=try-reload-or-restart
13 else
14 _dh_action=start
15 fi
d7992679 16 deb-systemd-invoke $_dh_action proxmox-backup.service proxmox-backup-proxy.service >/dev/null || true
aafe8609 17
ab661513
SR
18 # FIXME: Remove in future version once we're sure no broken entries remain in anyone's files
19 if grep -q -e ':termproxy::[^@]\+: ' /var/log/proxmox-backup/tasks/active; then
20 echo "Fixing up termproxy user id in task log..."
21 flock -w 30 /var/log/proxmox-backup/tasks/active.lock sed -i 's/:termproxy::\([^@]\+\): /:termproxy::\1@pam: /' /var/log/proxmox-backup/tasks/active
aafe8609 22 fi
b28253d6
DM
23 ;;
24
25 abort-upgrade|abort-remove|abort-deconfigure)
26 ;;
27
28 *)
29 echo "postinst called with unknown argument \`$1'" >&2
30 exit 1
31 ;;
32esac
33
34exit 0