From 2063f5d564bc884c358960fd20ab19052b5c4485 Mon Sep 17 00:00:00 2001 From: proski Date: Fri, 15 Sep 2000 01:02:50 +0000 Subject: Don't suppress output of umount and swapoff - it is both unwise and incompatible with lash that doesn't support >&1 yet. git-svn-id: svn://busybox.net/trunk/busybox@1055 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- init/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'init') diff --git a/init/init.c b/init/init.c index 7e821f110..8d2d1b235 100644 --- a/init/init.c +++ b/init/init.c @@ -818,9 +818,9 @@ void parse_inittab(void) /* No inittab file -- set up some default behavior */ #endif /* Swapoff on halt/reboot */ - new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console); + new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console); /* Umount all filesystems on halt/reboot */ - new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console); + new_initAction(CTRLALTDEL, "/bin/umount -a -r", console); /* Askfirst shell on tty1 */ new_initAction(ASKFIRST, SHELL, console); /* Askfirst shell on tty2 */ -- cgit v1.2.3-55-g6feb