rm "$file_ntpconf"
rm "$dir_ipconf/$file_ipconf"
rm "$dir_ntpconf/$file_ntpconf"
- sv u /var/service/fw
+ svc -u fw
exit
fi
echo "Reconfiguring fw"
mkdir -p "$dir_ipconf" 2>/dev/null
cp "$file_ipconf" "$dir_ipconf/$file_ipconf"
- sv u /var/service/fw
+ svc -u fw
fi
-if test -d /var/service/ntpd; then
+if test -d ../ntpd; then
./convert2ntpconf "$file_ntpconf"
# Reconfigure ntp server addresses if needed
diff --brief "$file_ntpconf" "$dir_ntpconf/$file_ntpconf" >/dev/null 2>&1
echo "Reconfiguring ntp"
mkdir -p "$dir_ntpconf" 2>/dev/null
cp "$file_ntpconf" "$dir_ntpconf/$file_ntpconf"
- sv t /var/service/ntpd
- sv u /var/service/ntpd
+ svc -t ntpd
+ svc -u ntpd
fi
fi
rm "$file_ntpconf"
rm "$dir_ipconf/$file_ipconf"
rm "$dir_ntpconf/$file_ntpconf"
-sv u /var/service/fw
+svc -u fw
mv "$0.log.new" "$0.log"
fi
-test -f "/var/service/dhcp_$if/env.out" || exec env - sleep "$ping_time"
+test -f "../dhcp_$if/env.out" || exec env - sleep "$ping_time"
-. "/var/service/dhcp_$if/env.out"
+. "../dhcp_$if/env.out"
test x"$router" != x"" || exec env - sleep "$ping_time"
#msg "Pinging $router"
env - sleep "$retry_time"
done
-test -d "/var/service/dhcp_$if" && {
- msg "Restarting /var/service/dhcp_$if"
- sv t "/var/service/dhcp_$if"
+test -d "../dhcp_$if" && {
+ msg "Restarting dhcp_$if"
+ svc -t "dhcp_$if"
}
-test -d "/var/service/supplicant_$if" && {
- msg "Restarting /var/service/supplicant_$if"
- sv t "/var/service/supplicant_$if"
+test -d "../supplicant_$if" && {
+ msg "Restarting supplicant_$if"
+ svc -t "supplicant_$if"
}
exec env - sleep "$ping_time"
$empty && echo "server=8.8.4.4"
# SIGHUP: make dnsmasq reload config
-sv h dnsmasq
+svc -h dnsmasq
ext_open_tcp="22 80 88" # space-separated
# Make ourself one-shot
-sv o .
+svc -o .
# Debug
#date '+%Y-%m-%d %H:%M:%S' >>"$0.log"
exec </dev/null
user=root
+start_delay=15
+net_down_delay=5
pool="us.pool.ntp.org" # replace "us" with your country code
service="${PWD##*/}"
rundir="/var/run/service/$service"
default_p_opt="-p 0.$pool -p 1.$pool -p 2.$pool -p 3.$pool"
+echo "* Checking network"
+test -f /var/run/service/fw/up || exec sleep $net_down_delay
+
+# With multiple interfaces (e.g. wired+wireless) going up,
+# networking scripts may restart ntpd service several times
+# in quick succession. Do not be too eager to start sending
+# NTP requests:
+sleep $start_delay
# Make sure rundir/ exists
mkdir -p "$rundir" 2>/dev/null
rm -rf rundir 2>/dev/null
ln -s "$rundir" rundir
-
-echo "* Checking network"
-test -f /var/run/service/fw/up || exec sleep 7
-sleep 5 # to let it settle
-
# Grab config from dhcp
cfg=-1
for f in rundir/*.ntpconf; do
- test -f "$f" || continue
- . "$f"
+ test -f "$f" || continue
+ . "$f"
done
# Select peers
p_opt=""
cfg=0
while test x"${ntpip[$cfg]}" != x""; do
- p_opt="$p_opt -p ${ntpip[$cfg]}"
- let cfg=cfg+1
+ p_opt="$p_opt -p ${ntpip[$cfg]}"
+ let cfg=cfg+1
done
test x"$p_opt" == x"" && p_opt="$default_p_opt"
if test x"$p_opt" == x""; then
echo "* No NTP peers configured, stopping"
- sv o .
+ svc -o .
exec sleep 1
fi
#!/bin/sh
-# executed when service is taken down ("sv d .")
+# executed when service is taken down
service=${PWD##*/}
file_ipconf="$service.ipconf"
rm "env.out"
rm "$file_ipconf"
rm "$dir_ipconf/$file_ipconf"
-sv u /var/service/fw
+svc -u fw
echo "Deconfiguring"
rm "$file_ipconf"
rm "$dir_ipconf/$file_ipconf"
- sv u /var/service/fw
+ svc -u fw
exit
fi
echo "Reconfiguring fw"
mkdir -p "$dir_ipconf" 2>/dev/null
cp "$file_ipconf" "$dir_ipconf/$file_ipconf"
- sv u /var/service/fw
+ svc -u fw
fi