mirror of
				https://github.com/riptidewave93/UNVR-NAS.git
				synced 2025-03-09 15:40:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [ "$1" == "poweroff" ]; then
 | 
						|
    poweroff
 | 
						|
elif [ "$1" == "reboot" ]; then
 | 
						|
    reboot
 | 
						|
else
 | 
						|
    echo "Unknown ubnt-systool cmd: $@" >> /tmp/ubnt-systool-unknown.log
 | 
						|
fi
 |