From 633a1290e5afbc13030baa2744a9619ef6e332d3 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 16 Jun 2014 14:10:05 +0200 Subject: [PATCH] Fix Apache Site configuration for openSUSE We can use the mechnism as on Fedora for openSUSE. Change-Id: Ic0d1734df3bdc9ec66e1592109b2d3770d6e0144 --- lib/apache | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/apache b/lib/apache index baf0fbc5f5..f7255be9d5 100644 --- a/lib/apache +++ b/lib/apache @@ -90,7 +90,7 @@ function install_apache_wsgi { # /etc/apache2/sites-available/. a2ensite and a2dissite need the entire file name to work. The default # sites' files are default and default-ssl. # -# On Fedora, any file in /etc/httpd/conf.d/ whose name ends with .conf is enabled. +# On Fedora and openSUSE, any file in /etc/httpd/conf.d/ whose name ends with .conf is enabled. # # On RHEL and CentOS, things should hopefully work as in Fedora. # @@ -113,7 +113,7 @@ function apache_site_config_for { # Ubuntu 14.04 - Apache 2.4 echo $APACHE_CONF_DIR/${site}.conf fi - elif is_fedora; then + elif is_fedora || is_suse; then # fedora conf.d is only imported if it ends with .conf so this is approx the same local enabled_site_file="$APACHE_CONF_DIR/${site}.conf" if [ -f $enabled_site_file ]; then @@ -129,7 +129,7 @@ function enable_apache_site { local site=$@ if is_ubuntu; then sudo a2ensite ${site} - elif is_fedora; then + elif is_fedora || is_suse; then local enabled_site_file="$APACHE_CONF_DIR/${site}.conf" # Do nothing if site already enabled or no site config exists if [[ -f ${enabled_site_file}.disabled ]] && [[ ! -f ${enabled_site_file} ]]; then @@ -143,7 +143,7 @@ function disable_apache_site { local site=$@ if is_ubuntu; then sudo a2dissite ${site} - elif is_fedora; then + elif is_fedora || is_suse; then local enabled_site_file="$APACHE_CONF_DIR/${site}.conf" # Do nothing if no site config exists if [[ -f ${enabled_site_file} ]]; then