19 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			268 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| #
 | |
| # revoke a certificate
 | |
| #
 | |
| #
 | |
| 
 | |
| if test $# -ne 1; then
 | |
|         echo "usage: revoke-crt <file.crt>";
 | |
|         exit 1
 | |
| fi
 | |
| 
 | |
| if test $KEY_DIR; then
 | |
|        cd $KEY_DIR && \
 | |
|        openssl ca -revoke $1 -config $KEY_CONFIG
 | |
| else
 | |
|        echo you must define KEY_DIR
 | |
| fi
 |