old mode 100644
new mode 100755
| | |
| | | #!/bin/sh |
| | | #!/bin/bash |
| | | |
| | | |
| | | PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin |
| | | |
| | | . /etc/profile |
| | | |
| | | /usr/bin/php -q /usr/local/ispconfig/server/server.php |
| | | umask 022 |
| | | |
| | | if [ -f /usr/local/ispconfig/server/lib/php.ini ]; then |
| | | PHPINIOWNER=`stat -c %U /usr/local/ispconfig/server/lib/php.ini` |
| | | if [ $PHPINIOWNER == 'root' ] || [ $PHPINIOWNER == 'ispconfig' ]; then |
| | | export PHPRC=/usr/local/ispconfig/server/lib |
| | | fi |
| | | fi |
| | | |
| | | cd /usr/local/ispconfig/server |
| | | /usr/bin/php -q \ |
| | | -d disable_classes= \ |
| | | -d disable_functions= \ |
| | | -d open_basedir= \ |
| | | /usr/local/ispconfig/server/server.php |
| | | |
| | | cd /usr/local/ispconfig/security |
| | | /usr/bin/php -q \ |
| | | -d disable_classes= \ |
| | | -d disable_functions= \ |
| | | -d open_basedir= \ |
| | | /usr/local/ispconfig/security/check.php |