From: Michael Prokop Date: Mon, 2 Jul 2012 12:24:37 +0000 (+0200) Subject: config_hostname: fix syntax error and wrong eend call X-Git-Tag: v0.9.54~1 X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=890be997e939b16058abf64e863243dc5ecf4ac4 config_hostname: fix syntax error and wrong eend call --- diff --git a/autoconfig.functions b/autoconfig.functions index 89616dc..441411f 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -384,9 +384,8 @@ config_hostname(){ fi einfo "Setting hostname to $HOSTNAME as requested." - grml-hostname $HOSTNAME >>$DEBUG ; eend $RC - eend $RC -fi + grml-hostname $HOSTNAME >>$DEBUG + eend $? } # }}}