diff options
author | Alon Bar-Lev <alon.barlev@gmail.com> | 2012-02-29 22:11:48 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2012-03-22 22:06:53 +0100 |
commit | 26abb83cb1cf0c331db875186250b0c8d55d6013 (patch) | |
tree | 96c3e8319ae2dcba7ce38497c8a6572e3fa0abef /easy-rsa/1.0/build-req | |
parent | 30029449d475c1e45f080d7481e4c7bf762b2480 (diff) | |
download | openvpn-26abb83cb1cf0c331db875186250b0c8d55d6013.tar.gz openvpn-26abb83cb1cf0c331db875186250b0c8d55d6013.tar.xz openvpn-26abb83cb1cf0c331db875186250b0c8d55d6013.zip |
Remove easy-rsa
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Acked-by: Samuli Seppänen <samuli@openvpn.net>
Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'easy-rsa/1.0/build-req')
-rwxr-xr-x | easy-rsa/1.0/build-req | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/easy-rsa/1.0/build-req b/easy-rsa/1.0/build-req deleted file mode 100755 index 30f62f5..0000000 --- a/easy-rsa/1.0/build-req +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -# -# Build a certificate signing request and private key. Use this -# when your root certificate and key is not available locally. -# - -if test $# -ne 1; then - echo "usage: build-req <name>"; - exit 1 -fi - -if test $KEY_DIR; then - cd $KEY_DIR && \ - openssl req -days 3650 -nodes -new -keyout $1.key -out $1.csr -config $KEY_CONFIG -else - echo you must define KEY_DIR -fi |