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