Make shellcheck shut up by double quoting all the things

This commit is contained in:
Daniel Goldberg 2020-02-09 15:16:16 +02:00
parent 78352a250a
commit 5b6c6a34f6
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
server_root=${1:-"./cc"}
openssl genrsa -out $server_root/server.key 2048
openssl req -new -key $server_root/server.key -out $server_root/server.csr -subj "/C=GB/ST=London/L=London/O=Global Security/OU=Monkey Department/CN=monkey.com"
openssl x509 -req -days 366 -in $server_root/server.csr -signkey $server_root/server.key -out $server_root/server.crt
openssl genrsa -out "$server_root"/server.key 2048
openssl req -new -key "$server_root"/server.key -out "$server_root"/server.csr -subj "/C=GB/ST=London/L=London/O=Global Security/OU=Monkey Department/CN=monkey.com"
openssl x509 -req -days 366 -in "$server_root"/server.csr -signkey "$server_root"/server.key -out $server_root/server.crt