summaryrefslogtreecommitdiff
path: root/packaging/debian/monkeysphere.prerm
blob: 05b29e6faa52aa337eb3e4ae2cf75bcc50bc1feb (plain)
  1. #!/bin/sh -e
  2. # prerm script for monkeysphere
  3. # Author: Jameson Rollins <jrollins@fifthhorseman.net>
  4. # Copyright 2008
  5. VARLIB="/var/lib/monkeysphere"
  6. rm -f "$VARLIB"/gnupg-host/gpg.conf
  7. rm -f "$VARLIB"/gnupg-authentication/gpg.conf
  8. rmdir --ignore-fail-on-non-empty "$VARLIB"/gnupg-host || true
  9. rmdir --ignore-fail-on-non-empty "$VARLIB"/gnupg-authentication || true
  10. # dh_installdeb will replace this with shell code automatically
  11. # generated by other debhelper scripts.
  12. #DEBHELPER#
  13. exit 0