style: format with shfmt

This commit is contained in:
Stanislas Lange 2020-05-01 00:10:11 +02:00
parent 9096af1677
commit 5e2e67f78d
1 changed files with 11 additions and 11 deletions

View File

@ -161,7 +161,7 @@ prefetch: yes' >>/etc/unbound/unbound.conf
fi
# IPv6 DNS for all OS
if [[ "$IPV6_SUPPORT" == 'y' ]]; then
if [[ $IPV6_SUPPORT == 'y' ]]; then
echo 'interface: fd42:42:42:42::1
access-control: fd42:42:42:42::/112 allow' >>/etc/unbound/unbound.conf
fi
@ -198,7 +198,7 @@ private-address: fd00::/8
private-address: fe80::/10
private-address: 127.0.0.0/8
private-address: ::ffff:0:0/96' >/etc/unbound/openvpn.conf
if [[ "$IPV6_SUPPORT" == 'y' ]]; then
if [[ $IPV6_SUPPORT == 'y' ]]; then
echo 'interface: fd42:42:42:42::1
access-control: fd42:42:42:42::/112 allow' >>/etc/unbound/openvpn.conf
fi
@ -798,7 +798,7 @@ ifconfig-pool-persist ipp.txt" >>/etc/openvpn/server.conf
;;
2) # Self-hosted DNS resolver (Unbound)
echo 'push "dhcp-option DNS 10.8.0.1"' >>/etc/openvpn/server.conf
if [[ "$IPV6_SUPPORT" == 'y' ]]; then
if [[ $IPV6_SUPPORT == 'y' ]]; then
echo 'push "dhcp-option DNS fd42:42:42:42::1"' >>/etc/openvpn/server.conf
fi
;;