From b73da4d6c24b343949d93e0b4a9f698f65b65a32 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 --- xenial/debian/changelog | 1 + xenial/debian/openstack-dashboard.postrm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/xenial/debian/changelog b/xenial/debian/changelog index 6c4ebe9..7598f07 100644 --- a/xenial/debian/changelog +++ b/xenial/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/xenial/debian/openstack-dashboard.postrm b/xenial/debian/openstack-dashboard.postrm index 7936ba5..8526cf6 100644 --- a/xenial/debian/openstack-dashboard.postrm +++ b/xenial/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