]> git.proxmox.com Git - pve-firewall.git/blob - debian/postinst
buildsys: use dpkg-architecture
[pve-firewall.git] / debian / postinst
1 #!/bin/sh
2
3 set -e
4
5 case "$1" in
6 configure)
7 systemctl reload-or-restart pve-firewall
8 ;;
9
10 abort-upgrade|abort-remove|abort-deconfigure)
11 ;;
12
13 *)
14 echo "postinst called with unknown argument \`$1'" >&2
15 exit 1
16 ;;
17 esac
18
19 #DEBHELPER#
20
21 exit 0