]> review.fuel-infra Code Review - openstack-build/horizon-build.git/commitdiff
Fixes a syntax error in debian/openstack-dashboard.postinst
authorThomas Goirand <thomas@goirand.fr>
Sun, 18 Nov 2012 04:02:25 +0000 (04:02 +0000)
committerThomas Goirand <thomas@goirand.fr>
Sun, 18 Nov 2012 04:02:25 +0000 (04:02 +0000)
Rewritten-From: c7459378aa21a693bb223064c0f8c4c883a17af1

trusty/debian/changelog
trusty/debian/openstack-dashboard.postinst

index f4a8f866b4a707ce6b123be11d5285e41d9012b9..5e82341ecc9e1c0dd68044927a452f1a242be76f 100644 (file)
@@ -1,3 +1,9 @@
+horizon (2012.1.1-8) unstable; urgency=low
+
+  * Syntax error in debian/openstack-dashboard.postinst (Closes: #693479).
+
+ -- Thomas Goirand <zigo@debian.org>  Sun, 18 Nov 2012 03:59:08 +0000
+
 horizon (2012.1.1-7) unstable; urgency=high
 
   * CVE-2012-5474: The file /etc/openstack-dashboard/local_settings is not
index 4c8c9e7928fb022311aa9269763e929ed7241277..32178282d120600966cd3f0195e28515da353cb8 100644 (file)
@@ -9,7 +9,7 @@ then
         --disabled-password \
         --group horizon
 
-       if[ -r /etc/openstack-dashboard/local_settings.py ] ; then
+       if [ -r /etc/openstack-dashboard/local_settings.py ] ; then
                chmod 0640 /etc/openstack-dashboard/local_settings.py
                chown horizon:horizon /etc/openstack-dashboard/local_settings.py
        fi