diff options
author | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
commit | ac9279cc0d5a00bc17908b2914941186020cd3ce (patch) | |
tree | 850a4fe19917113e75bfd2e79d00b58208468503 /support/openvpn | |
parent | 444f23e2d158389b22d40537fc9b027d9f575229 (diff) |
Massive whitespace cleanup
Diffstat (limited to 'support/openvpn')
-rwxr-xr-x | support/openvpn/up.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/openvpn/up.sh b/support/openvpn/up.sh index b8294a0c..4fa58368 100755 --- a/support/openvpn/up.sh +++ b/support/openvpn/up.sh @@ -62,7 +62,7 @@ done if [ -n "${NS}" ]; then DNS="# Generated by openvpn for interface ${dev}\n" - if [ -n "${SEARCH}" ] ; then + if [ -n "${SEARCH}" ]; then DNS="${DNS}search ${DOMAIN} ${SEARCH}\n" else DNS="${DNS}domain ${DOMAIN}\n" @@ -72,7 +72,7 @@ if [ -n "${NS}" ]; then printf "${DNS}" | resolvconf -a "${dev}" else # Preserve the existing resolv.conf - if [ -e /etc/resolv.conf ] ; then + if [ -e /etc/resolv.conf ]; then cp -p /etc/resolv.conf /etc/resolv.conf-"${dev}".sv fi (umask 022; printf "${DNS}" > /etc/resolv.conf) |