mirror of
https://github.com/Wind4/vlmcsd-debian.git
synced 2025-03-14 10:17:14 +00:00
21 lines
248 B
Plaintext
21 lines
248 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
purge)
|
||
|
rm -r /etc/vlmcsd
|
||
|
;;
|
||
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||
|
exit 0
|
||
|
;;
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|