summaryrefslogtreecommitdiff
path: root/packaging/debs
diff options
context:
space:
mode:
authorSimon MacMullen <simon@lshift.net>2009-02-20 13:48:26 +0000
committerSimon MacMullen <simon@lshift.net>2009-02-20 13:48:26 +0000
commit6c2bf946b11adfe6bb67777c648e4b8adcc1f40e (patch)
tree4d7ab6dbf8a6d69616d07a73cbce9235314acc74 /packaging/debs
parente1714e5fd864767e3fbb0c17d154e75fff03146a (diff)
parent3059d8c2905bb153f801ce3364bdaa4d1c9e181b (diff)
downloadrabbitmq-server-git-6c2bf946b11adfe6bb67777c648e4b8adcc1f40e.tar.gz
Merged 20327
Diffstat (limited to 'packaging/debs')
-rw-r--r--packaging/debs/Debian/debian/dirs1
-rw-r--r--packaging/debs/Debian/debian/postrm3
2 files changed, 4 insertions, 0 deletions
diff --git a/packaging/debs/Debian/debian/dirs b/packaging/debs/Debian/debian/dirs
index 1a707bc191..625b7d41f5 100644
--- a/packaging/debs/Debian/debian/dirs
+++ b/packaging/debs/Debian/debian/dirs
@@ -5,4 +5,5 @@ usr/share/man
var/lib/rabbitmq/mnesia
var/log/rabbitmq
etc/logrotate.d
+etc/rabbitmq
diff --git a/packaging/debs/Debian/debian/postrm b/packaging/debs/Debian/debian/postrm
index 8d1e92a929..a999d95b29 100644
--- a/packaging/debs/Debian/debian/postrm
+++ b/packaging/debs/Debian/debian/postrm
@@ -31,6 +31,9 @@ case "$1" in
if [ -d /var/run/rabbitmq ]; then
rm -r /var/run/rabbitmq
fi
+ if [ -d /etc/rabbitmq ]; then
+ rm -r /etc/rabbitmq
+ fi
if getent passwd rabbitmq >/dev/null; then
deluser rabbitmq
fi