* Uploading to unstable.

* Disabled apache config properly on removal.
This commit is contained in:
Thomas Goirand 2015-10-16 07:22:24 +00:00
parent 4bf89d989f
commit 110965c2d4
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
horizon (2:8.0.0-2) unstable; urgency=medium
* Uploading to unstable.
* Disabled apache config properly on removal.
-- Thomas Goirand <zigo@debian.org> Fri, 16 Oct 2015 07:21:51 +0000
horizon (2:8.0.0-1) experimental; urgency=medium
* New upstream release.

View File

@ -3,7 +3,7 @@
set -e
if [ -x /usr/sbin/a2dissite ] ; then
for i in openstack-dashboard openstack-dashboard-ssl-redirect openstack-dashboard-ssl ; do
for i in openstack-dashboard openstack-dashboard-ssl-redirect openstack-dashboard-ssl openstack-dashboard-alias-only.conf openstack-dashboard.conf openstack-dashboard-ssl.conf openstack-dashboard-ssl-redirect.conf ; do
if [ -L /etc/apache2/sites-enabled/${i} ] ; then
a2dissite ${i} || true
fi