blob: 00523a11044a63a45acde2fcd820b74ed4afeee3 (
plain)
- #!/bin/sh -e
- # prerm script for monkeysphere
- # Author: Jameson Rollins <jrollins@fifthhorseman.net>
- # Copyright 2008
- VARLIB="/var/lib/monkeysphere"
- rm -f "$VARLIB"/gnupg-host/gpg.conf
- rm -f "$VARLIB"/gnupg-authentication/gpg.conf
- rmdir --ignore-fail-on-non-empty "$VARLIB"/gnupg-host
- rmdir --ignore-fail-on-non-empty "$VARLIB"/gnupg-authentication
- # dh_installdeb will replace this with shell code automatically
- # generated by other debhelper scripts.
- #DEBHELPER#
- exit 0
|