mirror of
				https://git.proxmox.com/git/qemu-server
				synced 2025-10-31 08:36:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			146 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			146 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #! /bin/sh
 | |
| 
 | |
| # Abort if any command returns an error value
 | |
| set -e
 | |
| 
 | |
| if [ "$1" = purge ]; then
 | |
|     update-rc.d qemu-server remove >/dev/null 2>&1
 | |
| fi
 | 
