blob: 1992dce5e312520a1f74350b8ef576c2963cdc39 (
plain)
1
2
3
4
|
make clean
if make; then
su -c "echo \"Stopping Apache...\";/etc/init.d/apache2 stop;echo \"Wait for 3 seconds...\";sleep 3;echo \"Installing module...\";make install;echo \"Starting Apache...\";/etc/init.d/apache2 start"
fi
|