Build deb's using common build.py
[integration/packaging.git] / packages / deb / templates / opendaylight.postrm
1 #!/bin/sh
2 set -e
3
4 case "$1" in
5   purge)
6     rm -rf /opt/opendaylight/
7   ;;
8   remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
9   ;;
10   *)
11     echo "postrm called with unknown argument \`\$1'" >&2
12     exit 1
13   ;;
14 esac
15
16 #DEBHELPER#
17
18 exit 0