Fix quotes

This commit is contained in:
Angristan 2018-07-18 21:24:25 +02:00 committed by GitHub
parent 64fe8c98c8
commit 738f2b7fce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -589,9 +589,9 @@ ifconfig-pool-persist ipp.txt" >> /etc/openvpn/server.conf
echo 'push "dhcp-option DNS 176.103.130.131"' >> /etc/openvpn/server.conf
;;
10) # Custom DNS
echo """push "dhcp-option DNS $DNS1"""" >> /etc/openvpn/server.conf
echo "push \"dhcp-option DNS $DNS1\"" >> /etc/openvpn/server.conf
if [[ "$DNS2" != "" ]]; then
echo """push "dhcp-option DNS $DNS2"""" >> /etc/openvpn/server.conf
echo "push \"dhcp-option DNS $DNS2\"" >> /etc/openvpn/server.conf
fi
;;
esac