mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
wan="$(uci -P/var/state get network.wan.ifname)"
 | 
						|
 | 
						|
if [ -n "$wan" ]; then
 | 
						|
	uci -q batch <<-EOF >/dev/null
 | 
						|
		del_list vnstat.@vnstat[-1].interface=$wan
 | 
						|
		add_list vnstat.@vnstat[-1].interface=$wan
 | 
						|
		commit vnstat
 | 
						|
	EOF
 | 
						|
fi
 | 
						|
 | 
						|
exit 0
 |