From 975a7942cc2241b7b174e4c2589d53d7dc42772e Mon Sep 17 00:00:00 2001 From: Bill Zimmerman Date: Thu, 16 Jun 2016 15:32:43 +0200 Subject: [PATCH] Updated error message --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index 99f6a935..dbf1695e 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -48,7 +48,7 @@ function install_dependencies() { function enable_php_lighttpd() { install_log "Enabling PHP for lighttpd" - sudo lighty-enable-mod fastcgi-php || install_error "Unable to enable fastcgi-php for lighttpd" + sudo lighty-enable-mod fastcgi-php || install_error "Cannot enable fastcgi-php for lighttpd" sudo /etc/init.d/lighttpd restart || install_error "Unable to restart lighttpd" }