exe_bash_2017.2018/apacheStop

9 lines
185 B
Bash
Executable File

#!/bin/bash
if (( $EUID != 0 )); then
echo "Il faut les droit root pour executer la tache"
exit
fi
SERVICEtoSTOP="apache2"
echo "Arret d'$SERVICEtoSTOP"
service "$SERVICEtoSTOP" stop