blob: 58dcaae4a229d30bea84cd396dff448606a5653a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
cd ~/workspace
if ! ps aux | grep '[m]ysql' &>/dev/null; then
mysql-ctl restart
fi
sudo apachectl stop
perl scripts/clear-templates.pl
perl checksetup.pl
sudo apachectl start
|