summaryrefslogtreecommitdiff
path: root/debian/iptables-rrdtool.postinst
blob: 43ed15501e9e99a7c3e120cc43fa4048dd62e5da (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 ! [ -d /var/lib/iptables-rrdtool ]; then
      mkdir -p /var/lib/iptables-rrdtool
    fi

    ;;

  *)
    ;;

esac