The naming of this option was really confusing. Just rename it for clarity. Signed-off-by: Zbigniew Jędrzejewski-Szmek <zbyszek@xxxxxxxxx> --- sys-utils/nsenter.1 | 2 +- sys-utils/nsenter.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sys-utils/nsenter.1 b/sys-utils/nsenter.1 index ab1a6f1..7ca0f0e 100644 --- a/sys-utils/nsenter.1 +++ b/sys-utils/nsenter.1 @@ -135,7 +135,7 @@ Set the working directory. If no directory is specified set the working directory to the working directory of the target process. If directory is specified set the working directory to the specified directory. .TP -\fB\-e\fR, \fB\-\-exec\fR +\fB\-e\fR, \fB\-\-no\-fork\fR Do not fork before exec'ing the specified program. By default when entering a pid namespace enter calls fork before calling exec so that the children will be in the newly entered pid namespace. diff --git a/sys-utils/nsenter.c b/sys-utils/nsenter.c index 1f773e1..0a4985c 100644 --- a/sys-utils/nsenter.c +++ b/sys-utils/nsenter.c @@ -74,7 +74,7 @@ static void usage(int status) " -r, --root [=<dir>] set the root directory\n" " -w, --wd [=<dir>] set the working directory\n" " -a, --all set root and cwd and enter namespaces listed above\n" - " -e, --exec don't fork before exec'ing <program>\n"), out); + " -F, --no-fork don't fork before exec'ing <program>\n"), out); fputs(USAGE_SEPARATOR, out); fputs(USAGE_HELP, out); fputs(USAGE_VERSION, out); @@ -171,7 +171,7 @@ int main(int argc, char *argv[]) { "root", optional_argument, NULL, 'r' }, { "wd", optional_argument, NULL, 'w' }, { "all", no_argument, NULL, 'a' }, - { "exec", no_argument, NULL, 'e' }, + { "no-fork", no_argument, NULL, 'F' }, { NULL, 0, NULL, 0 } }; @@ -186,7 +186,7 @@ int main(int argc, char *argv[]) atexit(close_stdout); while ((c = - getopt_long(argc, argv, "hVt:m::u::i::n::p::U::r::w::ae", + getopt_long(argc, argv, "hVt:m::u::i::n::p::U::r::w::aF", longopts, NULL)) != -1) { switch (c) { case 'h': @@ -251,7 +251,7 @@ int main(int argc, char *argv[]) do_rd = do_wd = true; all_used = true; break; - case 'e': + case 'F': do_fork = 0; break; default: -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html