mirror of
https://github.com/jbowdre/phpipam-agent-docker.git
synced 2024-11-14 03:52:20 +00:00
9 lines
187 B
Bash
9 lines
187 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "$CRON_SCHEDULE /usr/local/bin/php /opt/phpipam-agent/index.php update > /proc/self/fd/1 2>/proc/self/fd/2" > $CRONTAB_FILE
|
|
chmod 0644 $CRONTAB_FILE
|
|
|
|
exec "$@"
|
|
|
|
|