summaryrefslogtreecommitdiff
path: root/debian/fswarn.postinst
blob: a22b3688f3123f9f5607c0502b129e47348f4f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

case "$1" in

  configure)

    if [ "$2" = "" ]; then
      mkdir /var/lib/iptables-rrdtool || true
    fi

    ;;

  *)
    ;;

esac