diff options
Diffstat (limited to 'init/init.c')
-rw-r--r-- | init/init.c | 4 |
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) /* 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 */ |