projects
/
pve-firewall.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
do not restart pvefw-logger with debian triggers
[pve-firewall.git]
/
debian
/
postinst
1
#!/bin/sh
2
3
set -e
4
5
case
"
$1
"
in
6
configure
)
7
;;
8
9
triggered
)
10
invoke-rc.d pve-firewall restart
11
exit
0
12
;;
13
14
abort-upgrade|abort-remove|abort-deconfigure
)
15
;;
16
17
*)
18
echo
"postinst called with unknown argument \`
$1
'"
>&
2
19
exit
1
20
;;
21
esac
22
23
#DEBHELPER#
24
25
exit
0