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