diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-15 01:27:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-15 01:27:53 +0100 |
commit | 28dbc1e80b0db09313f11e44f218138aefd646c8 (patch) | |
tree | 897f4bbc275cc773d20929deabeb8c16a51f2910 /src/execute.h | |
parent | 7b4bf06ba7f31ea8069fc8927729d70ab98b9b64 (diff) |
execute: optionally forward program output to /dev/console in addition to syslog/kmsg
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/execute.h b/src/execute.h index a6766f9e99..3cdd2ad284 100644 --- a/src/execute.h +++ b/src/execute.h @@ -78,7 +78,9 @@ typedef enum ExecOutput { EXEC_OUTPUT_NULL, EXEC_OUTPUT_TTY, EXEC_OUTPUT_SYSLOG, + EXEC_OUTPUT_SYSLOG_AND_CONSOLE, EXEC_OUTPUT_KMSG, + EXEC_OUTPUT_KMSG_AND_CONSOLE, EXEC_OUTPUT_SOCKET, _EXEC_OUTPUT_MAX, _EXEC_OUTPUT_INVALID = -1 |