7 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| set -e
 | |
| 
 | |
| if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
 | |
|     deb-systemd-invoke stop 'veilid-server.service' >/dev/null || true
 | |
| fi
 |