source: MondoRescue/branches/3.3/mindi-busybox/examples/var_service/dhcp_if/finish@ 3911

Last change on this file since 3911 was 3621, checked in by Bruno Cornec, 10 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

  • Property svn:executable set to *
File size: 424 bytes
Line 
1#!/bin/sh
2# executed when service is taken down ("sv d .")
3
4service=${PWD##*/}
5file_ipconf="$service.ipconf"
6file_ntpconf="$service.ntpconf"
7dir_ipconf="/var/run/service/fw"
8dir_ntpconf="/var/run/service/ntpd"
9
10# Reconfigure network with this interface disabled
11echo "Finish: deconfiguring"
12rm "env.out"
13rm "$file_ipconf"
14rm "$file_ntpconf"
15rm "$dir_ipconf/$file_ipconf"
16rm "$dir_ntpconf/$file_ntpconf"
17sv u /var/service/fw
Note: See TracBrowser for help on using the repository browser.