Below Bash script will restart the apache2 service
#!/bin/bash
RESTART="sudo service apache2 restart"
PGREP="/usr/bin/pgrep"
APACHE2="apache2"
$PGREP ${APACHE2}
if [ $? -ne 0 ]
then
$RESTART
fi
Below Bash script will restart the apache2 service
#!/bin/bash
RESTART="sudo service apache2 restart"
PGREP="/usr/bin/pgrep"
APACHE2="apache2"
$PGREP ${APACHE2}
if [ $? -ne 0 ]
then
$RESTART
fi
No comments:
Post a Comment