diff options
author | Denys Vlasenko | 2015-10-24 14:55:33 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-10-24 14:55:33 +0200 |
commit | 4f8ecf273c4a239d007125f3b96a55100b661c04 (patch) | |
tree | 680b7a535f119f2bfb2e820adb2be5d537ccb99a /examples/var_service/dhcp_if/finish | |
parent | d32a1a4054444d8193736ee4c5f515fa90dbb24f (diff) | |
download | busybox-4f8ecf273c4a239d007125f3b96a55100b661c04.zip busybox-4f8ecf273c4a239d007125f3b96a55100b661c04.tar.gz |
update network service examples
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/dhcp_if/finish')
-rwxr-xr-x | examples/var_service/dhcp_if/finish | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/var_service/dhcp_if/finish b/examples/var_service/dhcp_if/finish new file mode 100755 index 0000000..5e7667a --- /dev/null +++ b/examples/var_service/dhcp_if/finish @@ -0,0 +1,17 @@ +#!/bin/sh +# executed when service is taken down ("sv d .") + +service=${PWD##*/} +file_ipconf="$service.ipconf" +file_ntpconf="$service.ntpconf" +dir_ipconf="/var/run/service/fw" +dir_ntpconf="/var/run/service/ntpd" + +# Reconfigure network with this interface disabled +echo "Finish: deconfiguring" +rm "env.out" +rm "$file_ipconf" +rm "$file_ntpconf" +rm "$dir_ipconf/$file_ipconf" +rm "$dir_ntpconf/$file_ntpconf" +sv u /var/service/fw |