diff options
author | Pavel Roskin <proski@gnu.org> | 2000-09-15 01:34:17 +0000 |
---|---|---|
committer | Pavel Roskin <proski@gnu.org> | 2000-09-15 01:34:17 +0000 |
commit | f5cf8c6c65cbe48157dc8f9a4f159d6919b02143 (patch) | |
tree | 2b32083c03c81500c30cabde5260e5e046ceec94 /examples | |
parent | 33bee33af0492bd79c1849aa5aed491a23e6bb02 (diff) | |
download | busybox-w32-f5cf8c6c65cbe48157dc8f9a4f159d6919b02143.tar.gz busybox-w32-f5cf8c6c65cbe48157dc8f9a4f159d6919b02143.tar.bz2 busybox-w32-f5cf8c6c65cbe48157dc8f9a4f159d6919b02143.zip |
Don't suppress output of umount and swapoff - it is both unwise
and incompatible with lash that doesn't support >&1 yet.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/inittab | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/inittab b/examples/inittab index 2515264c7..13a04afdc 100644 --- a/examples/inittab +++ b/examples/inittab | |||
@@ -78,6 +78,6 @@ tty6::respawn:/sbin/getty 38400 tty6 | |||
78 | #ttyS2::respawn:/sbin/getty -x0 -s 57600 ttyS2 | 78 | #ttyS2::respawn:/sbin/getty -x0 -s 57600 ttyS2 |
79 | 79 | ||
80 | # Stuff to do before rebooting | 80 | # Stuff to do before rebooting |
81 | ::ctrlaltdel:/bin/umount -a -r > /dev/null 2>&1 | 81 | ::ctrlaltdel:/bin/umount -a -r |
82 | ::ctrlaltdel:/sbin/swapoff -a > /dev/null 2>&1 | 82 | ::ctrlaltdel:/sbin/swapoff -a |
83 | 83 | ||