mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-04 00:05:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 | 
						|
# Make uml_net setuid, but respects Sysadm's choices.
 | 
						|
 | 
						|
if [ -z "$(dpkg-statoverride --list /usr/bin/uml_net)" ]; then
 | 
						|
        chown root.root /usr/bin/uml_net
 | 
						|
        chmod 4755 /usr/bin/uml_net
 | 
						|
fi
 | 
						|
 |