mirror of
https://git.busybox.net/busybox
synced 2026-02-15 14:06:55 +00:00
Don't suppress output of umount and swapoff - it is both unwise
and incompatible with lash that doesn't support >&1 yet.
This commit is contained in:
parent
5f84fd7066
commit
33bee33af0
2 changed files with 4 additions and 4 deletions
4
init.c
4
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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue