diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-06-26 19:20:53 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-06-26 19:20:53 -0400 |
commit | c16601e61c70fd7d336bbe9d0db70ca523561cc0 (patch) | |
tree | eb3ec4ce67097103ae27b3b6eecd1b876384ea7f /etc/rc.reboot | |
parent | b47833cc89093aecab97920873e7e53606cf3be2 (diff) | |
download | pfsense-c16601e61c70fd7d336bbe9d0db70ca523561cc0.zip pfsense-c16601e61c70fd7d336bbe9d0db70ca523561cc0.tar.gz |
Add a space between interfaces
Diffstat (limited to 'etc/rc.reboot')
-rwxr-xr-x | etc/rc.reboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.reboot b/etc/rc.reboot index dbb8327..af5d874 100755 --- a/etc/rc.reboot +++ b/etc/rc.reboot @@ -25,7 +25,7 @@ sleep 1 echo -n "Downing interfaces: " for INTERFACE in `/sbin/ifconfig -l`; do - echo -n $INTERFACE + echo -n "$INTERFACE " /sbin/ifconfig $INTERFACE down done |