mirror of
https://github.com/systemd/systemd.git
synced 2025-02-18 21:57:48 +03:00
nspawn: print log notice when we are invoked from a tty but in "pipe" mode
If people do this then things are weird, and they should probably use --console=interactive (i.e. the default) instead. Prompted-by: #17070
This commit is contained in:
parent
efe4266240
commit
554c4beb47
@ -267,9 +267,15 @@ static int handle_arg_console(const char *arg) {
|
||||
arg_console_mode = CONSOLE_READ_ONLY;
|
||||
else if (streq(arg, "passive"))
|
||||
arg_console_mode = CONSOLE_PASSIVE;
|
||||
else if (streq(arg, "pipe"))
|
||||
else if (streq(arg, "pipe")) {
|
||||
if (isatty(STDIN_FILENO) > 0 && isatty(STDOUT_FILENO) > 0)
|
||||
log_full(arg_quiet ? LOG_DEBUG : LOG_NOTICE,
|
||||
"Console mode 'pipe' selected, but standard input/output are connected to an interactive TTY. "
|
||||
"Most likely you want to use 'interactive' console mode for proper interactivity and shell job control. "
|
||||
"Proceeding anyway.");
|
||||
|
||||
arg_console_mode = CONSOLE_PIPE;
|
||||
else
|
||||
} else
|
||||
return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Unknown console mode: %s", optarg);
|
||||
|
||||
arg_settings_mask |= SETTING_CONSOLE_MODE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user