16 lines
387 B
Bash
Executable File
16 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! "$PHP_CRONTABS_PATH" == "" ]; then
|
|
echo "env CRONTABS_PATH: setting up crontabs [ $PHP_CRONTABS_PATH ]:";
|
|
for f in ${PHP_CRONTABS_PATH}; do
|
|
echo " - $f";
|
|
rm -f /etc/cron.d/${f##*/}
|
|
cp $f /etc/cron.d/
|
|
chmod 0644 /etc/cron.d/${f##*/}
|
|
done
|
|
|
|
touch /var/log/cron.log
|
|
printenv | grep -v "no_proxy" >> /etc/default/locale
|
|
/etc/init.d/cron start > /dev/null
|
|
fi
|