From: Michael Prokop Date: Mon, 25 Jun 2007 22:08:44 +0000 (+0200) Subject: Send umount output to /dev/null X-Git-Tag: 1.0.10 X-Git-Url: http://git.grml.org/?p=grml-etc.git;a=commitdiff_plain;h=293f903e7627d30b5157e45150fb3545a5ded93d Send umount output to /dev/null --- diff --git a/etc/init.d/grml-reboot b/etc/init.d/grml-reboot index 5adc812..4cc241a 100755 --- a/etc/init.d/grml-reboot +++ b/etc/init.d/grml-reboot @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Klaus Knopper, (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mon Jun 25 23:53:08 CEST 2007 [mika] +# Latest change: Die Jun 26 00:08:30 CEST 2007 [mika] ################################################################################ export PATH=/sbin:/bin:/usr/bin:/usr/sbin @@ -167,7 +167,7 @@ for i in /dev/loop*; do losetup -d $i 2>/dev/null; done # Remove remaining unused modules (Kernel 2.4) # rmmod -a >/dev/null 2>&1 -umount -t notmpfs,nosysfs,noproc,nousbfs -adrvf 2>/dev/null +umount -t notmpfs,nosysfs,noproc,nousbfs -adrvf 1>/dev/null 2>&1 log_end_msg 0