annotate bin/startssl-nginx @ 274:38cb6a866d3f
StartSSL appender for nginx.
author |
Edho Arief <edho@myconan.net> |
date |
Tue, 06 Dec 2011 23:56:23 -0500 |
parents |
|
children |
c52680b34356 |
rev |
line source |
274
|
1 #!/bin/sh
|
|
2
|
|
3 _err_fatal() {
|
|
4 printf "%s\n" "$*"
|
|
5 exit 1
|
|
6 }
|
|
7
|
|
8 certfile="${1}"
|
|
9
|
|
10 command -v curl 2> /dev/null || _err_fatal "This script requires cURL. Please install it first."
|
|
11 test -z "${certfile}" && _err_fatal "Please specify certificate file."
|
|
12 test -f "${certfile}" && _err_fatal "Error reading certificate file ${certfile}."
|
|
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
|