From: Thomas Goirand <thomas@goirand.fr>
Date: Sat, 1 Jun 2013 06:59:42 +0000 (+0800)
Subject: Also rm -rf /var/lib/horizon on purge (Closes: #668760)
X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b8eabe8de75655efcda27000f87a6fad09d6368b;p=openstack-build%2Fhorizon-build.git

Also rm -rf /var/lib/horizon on purge (Closes: #668760)

Rewritten-From: e88652f8d1dcbf8d17566340458bfdfb0cba0f3a
---

diff --git a/trusty/debian/changelog b/trusty/debian/changelog
index 3f6f5e5..aee50cb 100644
--- a/trusty/debian/changelog
+++ b/trusty/debian/changelog
@@ -1,6 +1,7 @@
-horizon (2013.1.1-3) UNRELEASED; urgency=low
+horizon (2013.1.1-3) unstable; urgency=low
 
   * Ran wrap-and-sort.
+  * Also rm -rf /var/lib/horizon on purge (Closes: #668760).
 
  -- Thomas Goirand <zigo@debian.org>  Thu, 30 May 2013 11:23:28 +0800
 
diff --git a/trusty/debian/openstack-dashboard.postrm b/trusty/debian/openstack-dashboard.postrm
index 447c904..ea1a220 100644
--- a/trusty/debian/openstack-dashboard.postrm
+++ b/trusty/debian/openstack-dashboard.postrm
@@ -4,6 +4,7 @@ set -e
 
 if [ "${1}" = "purge" ] ; then
 	rm -rf /var/lib/openstack-dashboard
+	rm -rf /var/lib/horizon
 fi
 
 #DEBHELPER#