30 Jun
2010
30 Jun
'10
10:13 p.m.
Am 30.06.2010 23:47, schrieb Victor Lowther:
--- rc.sysinit | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/rc.sysinit b/rc.sysinit index 1d16224..31636e5 100755 --- a/rc.sysinit +++ b/rc.sysinit @@ -113,13 +113,12 @@ fi run_hook sysinit_udevsettled
# bring up the loopback interface -if [ -d /sys/class/net/lo ]; then +if [[ -d /sys/class/net/lo ]]; then stat_busy "Bringing up loopback interface" - /sbin/ifconfig lo 127.0.0.1 up - if [ $? -ne 0 ]; then - stat_fail + if ! /sbin/ifconfig lo 127.0.0.1 up; then + stat_fail else - stat_done + stat_done fi fi
Hmm, this could be done with the status() function instead, right? No need for stat_{busy,fail,done} then.