In FC15, NetworkManager by default uses global connections ("Available to all users"). Save them in /rw instead of /etc, to preserve them across reboots.
		
	
			
		
			
				
	
	
		
			11 linhas
		
	
	
		
			357 B
		
	
	
	
		
			Bash
		
	
	
		
			Ficheiro executável
		
	
	
	
	
			
		
		
	
	
			11 linhas
		
	
	
		
			357 B
		
	
	
	
		
			Bash
		
	
	
		
			Ficheiro executável
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ -d /etc/NetworkManager/system-connections ]; then
 | 
						|
    mkdir -p /rw/config/NM-system-connections
 | 
						|
    mv /etc/NetworkManager/system-connections/* /rw/config/NM-system-connections/ 2> /dev/null || true
 | 
						|
    rmdir /etc/NetworkManager/system-connections
 | 
						|
    ln -s /rw/config/NM-system-connections /etc/NetworkManager/system-connections
 | 
						|
fi
 | 
						|
 | 
						|
exit 0
 |