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