From 87506fe9df0d20251fca868386b82c772a8bada4 Mon Sep 17 00:00:00 2001 From: Christoph Date: Sat, 30 Dec 2017 22:08:03 +0100 Subject: [PATCH] install_httpd-2.4.sh: Fix error in detecting whether OS supports systemd services. --- install_httpd-2.4.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_httpd-2.4.sh b/install_httpd-2.4.sh index fa951c3..192ff27 100755 --- a/install_httpd-2.4.sh +++ b/install_httpd-2.4.sh @@ -103,7 +103,7 @@ _BASE_WEBSPACE_DIR="/var/www" # - systemd supported by OS ? # - -_systemd="$(which systemctl)" +_systemd="$(which systemd)" _systemctl="$(which systemctl)" if [[ -z "$_systemd" ]] && [[ -z "$_systemctl" ]]; then SYSTEMD_SUPPORTED=false