From 3ac8612b55b9d79d214ce5a10eb37e3b017a74ad Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Tue, 1 Oct 2013 01:08:20 +0100 Subject: [PATCH] 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 --- lib/horizon | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/horizon b/lib/horizon index 5973eb2a9f..048887ee10 100644 --- a/lib/horizon +++ b/lib/horizon @@ -130,6 +130,8 @@ function init_horizon() { HORIZON_REQUIRE='Require all granted' fi sudo sed '/^Listen/s/^.*$/Listen 0.0.0.0:80/' -i /etc/httpd/conf/httpd.conf + elif is_suse; then + : # nothing to do else exit_distro_not_supported "apache configuration" fi