The $DISTRO_NAME var is now set in all of the OS elements in environment.d. This patch removes the call to lsb_release and instead uses the $DISTRO_NAME variable. Change-Id: I7088eb88b6a3611fef5a21a6b62975876549465f
		
			
				
	
	
		
			8 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -eux
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
if [ "opensuse" = "$DISTRO_NAME" ]; then
 | 
						|
    install-packages dhcp-client
 | 
						|
fi
 |