fixed
This commit is contained in:
parent
a7e16495f2
commit
65a78a1fe0
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ openssl req -new -key /etc/ssl/private/$APP.key -out /etc/ssl/certs/$APP.csr -co
|
||||||
openssl x509 -req -in /etc/ssl/certs/$APP.csr -CA /root/ca.crt -CAkey /root/ca.key -CAcreateserial -out /etc/ssl/certs/$APP.crt -extfile openssl.cnf -extensions req_ext -days 500 -sha256
|
openssl x509 -req -in /etc/ssl/certs/$APP.csr -CA /root/ca.crt -CAkey /root/ca.key -CAcreateserial -out /etc/ssl/certs/$APP.crt -extfile openssl.cnf -extensions req_ext -days 500 -sha256
|
||||||
cp nginx.cnf /etc/nginx/sites-enabled/$APP
|
cp nginx.cnf /etc/nginx/sites-enabled/$APP
|
||||||
grep -qF "$DNS" /etc/bind/named.conf.local
|
grep -qF "$DNS" /etc/bind/named.conf.local
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "$DNS" | tee -a /etc/bind/named.conf.local
|
echo "$DNS" | tee -a /etc/bind/named.conf.local
|
||||||
else
|
else
|
||||||
echo "Entry already exists in named.conf.local"
|
echo "Entry already exists in named.conf.local"
|
||||||
|
|
Loading…
Reference in a new issue