]> git.proxmox.com Git - pve-firewall.git/blame_incremental - debian/postinst
buildsys: update upload target
[pve-firewall.git] / debian / postinst
... / ...
CommitLineData
1#!/bin/sh
2
3set -e
4
5case "$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 ;;
17esac
18
19#DEBHELPER#
20
21exit 0