diff options
author | Matt Goins <mjgoins@openflows.com> | 2008-11-16 11:18:38 -0500 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2008-11-16 11:18:38 -0500 |
commit | e7c994d6f67d380ed0de21f1500ec395eaab6640 (patch) | |
tree | e4c81a45e2dcfdd46409beab222d122751f5f6d7 /packaging/debian/monkeysphere.prerm | |
parent | 9aec501a27b51523165a05c4c4da0cc9251424e8 (diff) | |
parent | 5d9949335aeb1dec04f530cbb3dfcac24288706a (diff) |
Merge commit 'dkg/master'
Diffstat (limited to 'packaging/debian/monkeysphere.prerm')
-rwxr-xr-x | packaging/debian/monkeysphere.prerm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packaging/debian/monkeysphere.prerm b/packaging/debian/monkeysphere.prerm new file mode 100755 index 0000000..00523a1 --- /dev/null +++ b/packaging/debian/monkeysphere.prerm @@ -0,0 +1,20 @@ +#!/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 |