From ba2128f0233c04aea1f5adc425938f78bdd7540e Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Fri, 12 Oct 2012 15:09:08 +0200 Subject: Fix whitespace and quoting --- src/connections/ethernet | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/connections/ethernet') diff --git a/src/connections/ethernet b/src/connections/ethernet index 00079fc..94c04a1 100644 --- a/src/connections/ethernet +++ b/src/connections/ethernet @@ -205,7 +205,7 @@ ethernet_up() { # Set hostname if [[ -n "$HOSTNAME" ]]; then report_debug ethernet_up hostname "$HOSTNAME" - if ! echo "$HOSTNAME" > /proc/sys/kernel/hostname; then + if ! echo "$HOSTNAME" >/proc/sys/kernel/hostname; then report_iproute "Cannot set hostname to $HOSTNAME" fi fi @@ -213,8 +213,8 @@ ethernet_up() { # Generate a new resolv.conf if [[ -n "$DNS" ]]; then : >/etc/resolv.conf - [[ -n "$DOMAIN" ]] && echo "domain $DOMAIN" >>/etc/resolv.conf - [[ -n "$SEARCH" ]] && echo "search $SEARCH" >>/etc/resolv.conf + [[ -n "$DOMAIN" ]] && echo "domain $DOMAIN" >>/etc/resolv.conf + [[ -n "$SEARCH" ]] && echo "search $SEARCH" >>/etc/resolv.conf for dns in "${DNS[@]}"; do echo "nameserver $dns" >>/etc/resolv.conf done -- cgit v1.2.3-24-g4f1b