aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-15 01:02:50 +0000
committerproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-09-15 01:02:50 +0000
commit2063f5d564bc884c358960fd20ab19052b5c4485 (patch)
tree769725c30d822bafad088eae3ea7ce2b5d2d3b97 /init
parent5b00b6debf69287d99980257b75e951708014d51 (diff)
downloadbusybox-w32-2063f5d564bc884c358960fd20ab19052b5c4485.tar.gz
busybox-w32-2063f5d564bc884c358960fd20ab19052b5c4485.tar.bz2
busybox-w32-2063f5d564bc884c358960fd20ab19052b5c4485.zip
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
Diffstat (limited to 'init')
-rw-r--r--init/init.c4
1 files changed, 2 insertions, 2 deletions
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)
818 /* No inittab file -- set up some default behavior */ 818 /* No inittab file -- set up some default behavior */
819#endif 819#endif
820 /* Swapoff on halt/reboot */ 820 /* Swapoff on halt/reboot */
821 new_initAction(CTRLALTDEL, "/sbin/swapoff -a > /dev/null 2>&1", console); 821 new_initAction(CTRLALTDEL, "/sbin/swapoff -a", console);
822 /* Umount all filesystems on halt/reboot */ 822 /* Umount all filesystems on halt/reboot */
823 new_initAction(CTRLALTDEL, "/bin/umount -a -r > /dev/null 2>&1", console); 823 new_initAction(CTRLALTDEL, "/bin/umount -a -r", console);
824 /* Askfirst shell on tty1 */ 824 /* Askfirst shell on tty1 */
825 new_initAction(ASKFIRST, SHELL, console); 825 new_initAction(ASKFIRST, SHELL, console);
826 /* Askfirst shell on tty2 */ 826 /* Askfirst shell on tty2 */