annotate bin/startssl-nginx @ 283:108e05eb9b5c
Not just append but also read.
author |
Edho Arief <edho@myconan.net> |
date |
Sun, 25 Dec 2011 00:50:31 +0700 |
parents |
38cb6a866d3f |
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
|