7 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ $1 -ge 1 ] ; then
 | 
						|
        # Package upgrade, not uninstall
 | 
						|
        systemctl try-restart ${pkg.name}.service >/dev/null 2>&1 || :
 | 
						|
fi
 |