blob: 559d512e8c50575be193070eaa593fa4d07efa31 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Build a certificate signing request and private key. Use this
# when your root certificate and key is not available locally.
export EASY_RSA="${EASY_RSA:-.}"
"$EASY_RSA/pkitool" --interact --csr $*
|