17 lines
280 B
Bash
17 lines
280 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "EXTRAURL: $EXTRAURL"
|
|
|
|
if [[ -f "$REPOFILE" ]]; then
|
|
echo "URL file exists"
|
|
else
|
|
touch $REPOFILE
|
|
echo $EXTRAURL | tee $REPOFILE
|
|
fi
|
|
|
|
echo "nameserver $DNSSRV" > /etc/resolv.conf
|
|
echo "search local" >> /etc/resolv.conf
|
|
|
|
exec /usr/sbin/crond -f |