additional_plugins/setup/s9y_conf/bash/examples/mk_s9y.sh
2011-12-13 12:29:05 +01:00

16 lines
234 B
Bash

#!/bin/bash
#
#
./s9y_conf.sh
if [ "X$?" != "X0" ]; then
echo "ERROR in Config Script !"
exit 1
fi
./s9y_install_shared.sh
apache2ctl reload
if [ "X$?" != "X0" ]; then
echo "ERROR Reloading Apache2 !"
exit 1
fi
exit 0