From 8c052bf2e85a96549ad3e0751d31a5837adca653 Mon Sep 17 00:00:00 2001 From: Mehdi Abaakouk Date: Fri, 22 Jun 2012 11:45:36 +0200 Subject: [PATCH] Clean horizon user home directory on purge. Closes: #668760 Rewritten-From: 6dfac1e841e93716cf02eedc5a0a7c0a49ac8e4c --- trusty/debian/changelog | 1 + trusty/debian/openstack-dashboard.postrm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/trusty/debian/changelog b/trusty/debian/changelog index 6c4ebe9..7598f07 100644 --- a/trusty/debian/changelog +++ b/trusty/debian/changelog @@ -6,6 +6,7 @@ horizon (2012.1.1-1) UNRELEASED; urgency=low [ Mehdi Abaakouk ] * Remove patches fixed upstream: CVE_2012-2094, CVE_2012-2144. * Add gbp configuration file + * Clean horizon user home directory on purge. Closes: #668760 -- Julien Danjou Thu, 21 Jun 2012 11:30:39 +0200 diff --git a/trusty/debian/openstack-dashboard.postrm b/trusty/debian/openstack-dashboard.postrm index 7936ba5..8526cf6 100644 --- a/trusty/debian/openstack-dashboard.postrm +++ b/trusty/debian/openstack-dashboard.postrm @@ -4,9 +4,9 @@ set -e case $1 in purge) - userdel horizon || true + userdel -r horizon || true groupdel horizon || true ;; esac -#DEBHELPER# \ No newline at end of file +#DEBHELPER# -- 2.45.2