Browse code

Don't bail when setting up horizon on openSUSE

I85325179f1792d985b0375572abfe8c8a82fecc3 accidentally removed the
conditional branch required to prevent setup of horizon aborting on
openSUSE, so put it back in.

Change-Id: Ia3e4464a2d718e402d84a0bcf60f13ef30404969

Adam Spiers authored on 2013/10/01 09:08:20
Showing 1 changed files
... ...
@@ -130,6 +130,8 @@ function init_horizon() {
130 130
             HORIZON_REQUIRE='Require all granted'
131 131
         fi
132 132
         sudo sed '/^Listen/s/^.*$/Listen 0.0.0.0:80/' -i /etc/httpd/conf/httpd.conf
133
+    elif is_suse; then
134
+        : # nothing to do
133 135
     else
134 136
         exit_distro_not_supported "apache configuration"
135 137
     fi