From 11315e481a7ff794b87ba12b8506daa2fc16a63a Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Mon, 30 Jan 2017 21:20:32 +0100 Subject: [PATCH] Remove php from server.sh Signed-off-by: Severin Kaderli --- bin/server.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/server.sh b/bin/server.sh index 9d35a63..eab73ba 100755 --- a/bin/server.sh +++ b/bin/server.sh @@ -7,11 +7,9 @@ if [ "$1" == "start" ]; then sudo systemctl start httpd.service sudo systemctl start mariadb.service - sudo systemctl start php7.0-fpm.service elif [ "$1" == "stop" ]; then sudo systemctl stop httpd.service sudo systemctl stop mariadb.service - sudo systemctl stop php7.0-fpm.service else echo "'$1' is an unknown option" exit 0