LDAPAccountManager/lam/lib/cron.sh

12 lines
144 B
Bash
Raw Normal View History

2015-10-28 18:26:16 +00:00
#!/bin/sh
dir=`dirname $0`
2020-02-04 18:08:18 +00:00
if [ -x /usr/bin/php ]; then
2015-10-28 18:26:16 +00:00
/usr/bin/php -f $dir/cron.inc $*
exit $?
fi
echo "No PHP executable found"
exit 1