Make sure exit value of this script is zero. Or the file won't be deleted. Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
[ "$(uci get rpcd.@rpcd[0].socket)" = "/var/run/ubus.sock" ] || exit 0
 | 
						|
 | 
						|
uci set rpcd.@rpcd[0].socket='/var/run/ubus/ubus.sock'
 | 
						|
uci commit rpcd
 | 
						|
 | 
						|
exit 0
 |