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:
parent
d710d36375
commit
cb96a2c69a
@ -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>
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user