Remove php from server.sh

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2017-01-30 21:20:32 +01:00
parent c1edaffcbf
commit 11315e481a

View file

@ -7,11 +7,9 @@
if [ "$1" == "start" ]; then if [ "$1" == "start" ]; then
sudo systemctl start httpd.service sudo systemctl start httpd.service
sudo systemctl start mariadb.service sudo systemctl start mariadb.service
sudo systemctl start php7.0-fpm.service
elif [ "$1" == "stop" ]; then elif [ "$1" == "stop" ]; then
sudo systemctl stop httpd.service sudo systemctl stop httpd.service
sudo systemctl stop mariadb.service sudo systemctl stop mariadb.service
sudo systemctl stop php7.0-fpm.service
else else
echo "'$1' is an unknown option" echo "'$1' is an unknown option"
exit 0 exit 0