1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-25 01:34:28 +03:00

nspawn: catch config mistake of specifying -b and args

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-02-24 14:10:51 +01:00
parent d710d36375
commit cb96a2c69a
2 changed files with 8 additions and 1 deletions

View File

@ -170,7 +170,9 @@
<listitem><para>Automatically search
for an init binary and invoke it
instead of a shell or a user supplied
program.</para></listitem>
program. A command to execute cannot
be specified in this case.
</para></listitem>
</varlistentry>
<varlistentry>

View File

@ -267,6 +267,11 @@ static int parse_argv(int argc, char *argv[]) {
}
}
if (optind < argc && arg_boot) {
log_error("Cannot specify a command together with '-b'");
return -EINVAL;
}
return 1;
}