diff options
author | Rob Landley <rob@landley.net> | 2018-11-20 09:54:36 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-11-20 09:54:36 -0600 |
commit | 42f8b18bc27b0143edee8fd598eee853d6ca47f9 (patch) | |
tree | bbc63640f97bd01047388663c59966fa41ee9b4d | |
parent | 30ebb153fb129bae14c4d2d95e42db9b1a45416d (diff) | |
download | toybox-42f8b18bc27b0143edee8fd598eee853d6ca47f9.tar.gz |
Eduardas Meile asked umount to ignore -c due to broken init systems.
-rw-r--r-- | toys/lsb/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/lsb/umount.c b/toys/lsb/umount.c index cebe2f0a..d67d41fb 100644 --- a/toys/lsb/umount.c +++ b/toys/lsb/umount.c @@ -8,7 +8,7 @@ * nor per-process mount namespaces can work sanely with mtab. The kernel * tracks mount points now, a userspace application can't do so anymore. -USE_UMOUNT(NEWTOY(umount, "ndDflrat*v[!na]", TOYFLAG_BIN|TOYFLAG_STAYROOT)) +USE_UMOUNT(NEWTOY(umount, "cndDflrat*v[!na]", TOYFLAG_BIN|TOYFLAG_STAYROOT)) config UMOUNT bool "umount" |