annotate bin/startssl-nginx @ 388:e5cf57bf6b47
 
Merge commit 'd029961' into rhel5
 | author | 
 Edho Arief <edho@myconan.net> | 
 | date | 
 Thu, 26 Jul 2012 10:39:57 +0200 | 
 | parents | 
 c52680b34356  | 
 | children | 
 9066463340a4  | 
 | rev | 
   line source | 
  
| 
274
 | 
     1 #!/bin/sh
 | 
| 
 | 
     2 
 | 
| 
 | 
     3 _err_fatal() {
 | 
| 
 | 
     4   printf "%s\n" "$*"
 | 
| 
 | 
     5   exit 1
 | 
| 
 | 
     6 }
 | 
| 
 | 
     7 
 | 
| 
 | 
     8 certfile="${1}"
 | 
| 
 | 
     9 
 | 
| 
289
 | 
    10 command -v curl 2>&1 > /dev/null || _err_fatal "This script requires cURL. Please install it first."
 | 
| 
274
 | 
    11 test -z "${certfile}" && _err_fatal "Please specify certificate file."
 | 
| 
289
 | 
    12 test -f "${certfile}" || _err_fatal "Error reading certificate file ${certfile}."
 | 
| 
274
 | 
    13 
 | 
| 
 | 
    14 for ca in sub.class1.server.ca.pem ca.pem; do
 | 
| 
 | 
    15   curl "http://www.startssl.com/certs/${ca}" >> "${certfile}"
 | 
| 
 | 
    16 done
 | 
| 
 | 
    17 
 |