diff options
Diffstat (limited to 'roles/common')
| -rwxr-xr-x | roles/common/files/usr/local/bin/genkeypair.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/roles/common/files/usr/local/bin/genkeypair.sh b/roles/common/files/usr/local/bin/genkeypair.sh index fac8ff2..53cc050 100755 --- a/roles/common/files/usr/local/bin/genkeypair.sh +++ b/roles/common/files/usr/local/bin/genkeypair.sh @@ -115,7 +115,7 @@ while [ $# -gt 0 ]; do          --privkey=?*) privkey="${1#--privkey=}";;          --usage=?*) usage="${usage:+$usage,}${1#--usage=}";; -        --config=?*) dns="${1#--config=}";; +        --config=?*) config="${1#--config=}";;          --mode=?*) mode="${1#--mode=}";;          --owner=?*) owner="${1#--owner=}";; @@ -168,7 +168,7 @@ if [ -z "$config" -a \( "$cmd" = x509 -o "$cmd" = csr \) ]; then  		organizationName       = Fripost  		organizationalUnitName = SSLcerts  		$(echo "$ou") -		commonName             = $cn +		commonName             = ${cn:-/}  		[ v3_req ]  		subjectAltName       = email:admin@fripost.org${dns:+, $dns} | 
