summaryrefslogtreecommitdiff
path: root/plugins/sudoers/def_data.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sudoers/def_data.c')
-rw-r--r--plugins/sudoers/def_data.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/sudoers/def_data.c b/plugins/sudoers/def_data.c
index 41de8fc0b..b8c1212d2 100644
--- a/plugins/sudoers/def_data.c
+++ b/plugins/sudoers/def_data.c
@@ -352,10 +352,30 @@ struct sudo_defs_types sudo_defs_table[] = {
N_("Log user's input for the command being run"),
NULL,
}, {
+ "log_stdin", T_FLAG,
+ N_("Log the command's standard input if not connected to a terminal"),
+ NULL,
+ }, {
+ "log_ttyin", T_FLAG,
+ N_("Log the user's terminal input for the command being run"),
+ NULL,
+ }, {
"log_output", T_FLAG,
N_("Log the output of the command being run"),
NULL,
}, {
+ "log_stdout", T_FLAG,
+ N_("Log the command's standard output if not connected to a terminal"),
+ NULL,
+ }, {
+ "log_stderr", T_FLAG,
+ N_("Log the command's standard error if not connected to a terminal"),
+ NULL,
+ }, {
+ "log_ttyout", T_FLAG,
+ N_("Log the terminal output of the command being run"),
+ NULL,
+ }, {
"compress_io", T_FLAG,
N_("Compress I/O logs using zlib"),
NULL,
@@ -668,6 +688,10 @@ struct sudo_defs_types sudo_defs_table[] = {
N_("The mechanism used by the intercept and log_subcmds options: %s"),
def_data_intercept_type,
}, {
+ "intercept_verify", T_FLAG,
+ N_("Attempt to verify the command and arguments after execution"),
+ NULL,
+ }, {
"apparmor_profile", T_STR,
N_("AppArmor profile to use in the new security context: %s"),
NULL,