From 76e94b55580f2cc6bad8dd126f7ace6b63539a4e Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 19 May 2014 10:58:21 +0200 Subject: [PATCH] do not restart pvefw-logger with debian triggers That is not necessary. --- debian/postinst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 debian/postinst diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 0000000..e413542 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e + +case "$1" in + configure) + ;; + + triggered) + invoke-rc.d pve-firewall restart + exit 0 + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 \ No newline at end of file -- 2.39.2