mirror of
				https://git.kernel.org/pub/scm/network/wireless/iwd.git
				synced 2025-11-03 16:17:31 +01:00 
			
		
		
		
	autotests/testP2P/client_test.py is renamed to connection_test.py to reflect that it now tests both roles.
		
			
				
	
	
		
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/bash
 | 
						|
case $reason in
 | 
						|
BOUND|RENEW|REBIND|REBOOT)
 | 
						|
  if [ x$new_ip_address != x ] && \
 | 
						|
     [ x$new_ip_address != x$old_ip_address -o \
 | 
						|
       x$reason = xBOUND -o x$reason = xREBOOT ]; then
 | 
						|
    /sbin/ip addr add $new_ip_address/${new_subnet_mask:-32} \
 | 
						|
                      ${new_broadcast_arg} \
 | 
						|
                      dev $interface
 | 
						|
  fi
 | 
						|
;;
 | 
						|
EXPIRE|FAIL|RELEASE|STOP)
 | 
						|
  if [ x$old_ip_address != x ]; then
 | 
						|
    /sbin/ip -4 addr flush dev $interface
 | 
						|
  fi
 | 
						|
;;
 | 
						|
esac
 |