3dm2/postrm
Adam Cécile (Le_Vert) 86110e0922 Import 3dm2
2013-08-14 22:55:26 +02:00

18 lines
196 B
Bash

#!/bin/sh -e
case "$1" in
remove)
# Remove lock if still exists
rm -f /var/lock/subsys/3dm2
;;
purge)
# Remove conf and ssl cert
rm -rf /etc/3dm2
;;
esac
#DEBHELPER#