17 lines
318 B
Bash
Executable File
17 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# stop on error
|
|
set -e
|
|
|
|
if [ "$BUILDFREQ" == "" ]; then
|
|
# set default
|
|
BUILDFREQ=10
|
|
fi
|
|
|
|
# Run the pull script regularly
|
|
cmd="$BUILDFREQ * * * * /aux/pull-n-build.sh"
|
|
grep "$cmd" /var/spool/cron/crontabs/root || echo "$cmd" >> /var/spool/cron/crontabs/root
|
|
|
|
# start cron daemon (goes into background)
|
|
crond
|