Merged in LDAP Support

This commit is contained in:
Aaron Spangler
2004-02-13 02:08:27 +00:00
parent bd9be2cf05
commit 240f4e0317
3 changed files with 9 additions and 0 deletions

View File

@@ -251,6 +251,10 @@ struct sudo_defs_types sudo_defs_table[] = {
"env_keep", T_LIST|T_BOOL,
"Environment variables to preserve:",
NULL,
}, {
"ignore_local_sudoers", T_FLAG,
"If LDAP directory is up, do we ignore local sudoers file",
NULL,
}, {
NULL, 0, NULL
}

View File

@@ -112,6 +112,8 @@
#define I_ENV_DELETE 55
#define def_env_keep (sudo_defs_table[56].sd_un.list)
#define I_ENV_KEEP 56
#define def_ignore_local_sudoers (sudo_defs_table[57].sd_un.flag)
#define I_IGNORE_LOCAL_SUDOERS 57
enum def_tupple {
never,

View File

@@ -182,3 +182,6 @@ env_delete
env_keep
T_LIST|T_BOOL
"Environment variables to preserve:"
ignore_local_sudoers
T_FLAG
"If LDAP directory is up, do we ignore local sudoers file"