From: Mehdi Abaakouk Date: Fri, 22 Jun 2012 09:45:36 +0000 (+0200) Subject: Clean horizon user home directory on purge. Closes: #668760 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b73da4d6c24b343949d93e0b4a9f698f65b65a32;p=openstack-build%2Fhorizon-build.git Clean horizon user home directory on purge. Closes: #668760 Rewritten-From: 6dfac1e841e93716cf02eedc5a0a7c0a49ac8e4c --- 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#