aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-07-03 17:02:50 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-07-03 17:02:50 +0200
commitaa75a7da7f3b0bb50be82f535244137bae423fa8 (patch)
tree781df3664a0f5b29cb4a8b715c28ac75b4c1584c /examples
parente5d5f5b9a770de5a48d1a3bd293d5d611d6624c4 (diff)
downloadbusybox-aa75a7da7f3b0bb50be82f535244137bae423fa8.tar.gz
examples/var_service/: use "svc" for service commands, other tweaks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/var_service/dhcp_if/dhcp_handler10
-rwxr-xr-xexamples/var_service/dhcp_if/finish2
-rwxr-xr-xexamples/var_service/dhcp_if_pinger/run16
-rw-r--r--examples/var_service/fw/etc/dnsmasq_servers.conf2
-rwxr-xr-xexamples/var_service/fw/run2
-rwxr-xr-xexamples/var_service/ntpd/run25
-rwxr-xr-xexamples/var_service/zcip_if/finish4
-rwxr-xr-xexamples/var_service/zcip_if/zcip_handler4
8 files changed, 35 insertions, 30 deletions
diff --git a/examples/var_service/dhcp_if/dhcp_handler b/examples/var_service/dhcp_if/dhcp_handler
index 3d44a6022..6a97e8543 100755
--- a/examples/var_service/dhcp_if/dhcp_handler
+++ b/examples/var_service/dhcp_if/dhcp_handler
@@ -52,7 +52,7 @@ if test x"$1" != x"bound" && test x"$1" != x"renew" ; then
rm "$file_ntpconf"
rm "$dir_ipconf/$file_ipconf"
rm "$dir_ntpconf/$file_ntpconf"
- sv u /var/service/fw
+ svc -u fw
exit
fi
@@ -67,10 +67,10 @@ if test $? != 0; then
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
@@ -78,7 +78,7 @@ if test -d /var/service/ntpd; then
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
diff --git a/examples/var_service/dhcp_if/finish b/examples/var_service/dhcp_if/finish
index 5e7667a2d..8ce188336 100755
--- a/examples/var_service/dhcp_if/finish
+++ b/examples/var_service/dhcp_if/finish
@@ -14,4 +14,4 @@ rm "$file_ipconf"
rm "$file_ntpconf"
rm "$dir_ipconf/$file_ipconf"
rm "$dir_ntpconf/$file_ntpconf"
-sv u /var/service/fw
+svc -u fw
diff --git a/examples/var_service/dhcp_if_pinger/run b/examples/var_service/dhcp_if_pinger/run
index 8aca90c1a..25341243f 100755
--- a/examples/var_service/dhcp_if_pinger/run
+++ b/examples/var_service/dhcp_if_pinger/run
@@ -21,9 +21,9 @@ if test -f "$0.log"; then
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"
@@ -36,12 +36,12 @@ while true; do
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"
diff --git a/examples/var_service/fw/etc/dnsmasq_servers.conf b/examples/var_service/fw/etc/dnsmasq_servers.conf
index 68313605f..c39fe6e43 100644
--- a/examples/var_service/fw/etc/dnsmasq_servers.conf
+++ b/examples/var_service/fw/etc/dnsmasq_servers.conf
@@ -35,4 +35,4 @@ $empty && echo "server=8.8.8.8"
$empty && echo "server=8.8.4.4"
# SIGHUP: make dnsmasq reload config
-sv h dnsmasq
+svc -h dnsmasq
diff --git a/examples/var_service/fw/run b/examples/var_service/fw/run
index 1fd71cc01..41078d0ab 100755
--- a/examples/var_service/fw/run
+++ b/examples/var_service/fw/run
@@ -8,7 +8,7 @@ extif="if"
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"
diff --git a/examples/var_service/ntpd/run b/examples/var_service/ntpd/run
index 6f2a68188..5c90aad41 100755
--- a/examples/var_service/ntpd/run
+++ b/examples/var_service/ntpd/run
@@ -6,12 +6,22 @@ exec 2>&1
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
@@ -20,30 +30,25 @@ chmod -R a=rX "$rundir"
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
diff --git a/examples/var_service/zcip_if/finish b/examples/var_service/zcip_if/finish
index 95995cf5f..7955cf3b8 100755
--- a/examples/var_service/zcip_if/finish
+++ b/examples/var_service/zcip_if/finish
@@ -1,5 +1,5 @@
#!/bin/sh
-# executed when service is taken down ("sv d .")
+# executed when service is taken down
service=${PWD##*/}
file_ipconf="$service.ipconf"
@@ -10,4 +10,4 @@ echo "Finish: deconfiguring"
rm "env.out"
rm "$file_ipconf"
rm "$dir_ipconf/$file_ipconf"
-sv u /var/service/fw
+svc -u fw
diff --git a/examples/var_service/zcip_if/zcip_handler b/examples/var_service/zcip_if/zcip_handler
index 3c6ca788b..625450f7b 100755
--- a/examples/var_service/zcip_if/zcip_handler
+++ b/examples/var_service/zcip_if/zcip_handler
@@ -28,7 +28,7 @@ if test x"$1" != x"config"; then
echo "Deconfiguring"
rm "$file_ipconf"
rm "$dir_ipconf/$file_ipconf"
- sv u /var/service/fw
+ svc -u fw
exit
fi
@@ -43,5 +43,5 @@ if test $? != 0; then
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