build-req
来自「OpenVPN is a robust and highly flexible 」· 代码 · 共 19 行
TXT
19 行
#!/bin/bash## 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 1fi if test $KEY_DIR; then cd $KEY_DIR && \ openssl req -days 3650 -nodes -new -keyout $1.key -out $1.csr -config $KEY_CONFIGelse echo you must define KEY_DIRfi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?