File: spf-milter-python.postrm

package info (click to toggle)
pymilter-milters 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,108 kB
  • sloc: python: 3,181; sh: 486; makefile: 37; ansic: 33
file content (17 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

if [ "$1" = "purge" ] ; then
  for dir in /etc/spf-milter-python/ /var/log/spf-milter-python; do
    if [ -d "$dir" ]; then
      rmdir "$dir" --ignore-fail-on-non-empty || true
    fi
  done
fi


#DEBHELPER#

exit 0