8 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| if [ "$1" == "" ]; then echo Need a service name ; exit; fi
 | |
| 
 | |
| systemctl daemon-reload
 | |
| systemctl restart $1
 | |
| sleep 3
 | |
| systemctl status -l $1
 | 
