mirror of
				https://github.com/yuezk/GlobalProtect-openconnect.git
				synced 2025-05-20 07:26:58 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
case "$1" in
 | 
						|
    purge|remove|upgrade)
 | 
						|
        # Remove the gpgui binary downloaded at runtime
 | 
						|
        rm -f /usr/bin/gpgui
 | 
						|
    ;;
 | 
						|
 | 
						|
    *)
 | 
						|
    ;;
 | 
						|
esac
 | 
						|
 | 
						|
exit 0
 |