mirror of
				https://git.busybox.net/busybox
				synced 2025-11-03 08:22:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
# parameters:
 | 
						|
# $1: interface
 | 
						|
# $2: state
 | 
						|
 | 
						|
if test x"$2" = x"down"; then
 | 
						|
	echo "Downing dhcp_$1"
 | 
						|
	svc -d "dhcp_$1"
 | 
						|
	echo "Downing zcip_$1"
 | 
						|
	svc -d "zcip_$1"
 | 
						|
fi
 | 
						|
if test x"$2" = x"up"; then
 | 
						|
	echo "Upping dhcp_$1"
 | 
						|
	svc -u "dhcp_$1"
 | 
						|
	echo "Upping zcip_$1"
 | 
						|
	svc -u "zcip_$1"
 | 
						|
fi
 | 
						|
# Parent ifplugd exits if we exit with nonzero.
 | 
						|
# Do not startle it:
 | 
						|
exit 0
 |