summaryrefslogtreecommitdiff
path: root/debian/fswarn.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/fswarn.postinst')
-rw-r--r--debian/fswarn.postinst18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/fswarn.postinst b/debian/fswarn.postinst
new file mode 100644
index 0000000..a22b368
--- /dev/null
+++ b/debian/fswarn.postinst
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+
+ configure)
+
+ if [ "$2" = "" ]; then
+ mkdir /var/lib/iptables-rrdtool || true
+ fi
+
+ ;;
+
+ *)
+ ;;
+
+esac