diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-10-06 14:20:25 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-10-06 14:34:22 +1100 |
commit | c2d70af1a7b0a67283837a9f823158fd7f8db574 (patch) | |
tree | 8fe8e80404a31a7ecb81d8cea6671351151fb393 | |
parent | ea41860d32d38448e08cefd79d30ee1150317a9e (diff) | |
download | samba-c2d70af1a7b0a67283837a9f823158fd7f8db574.tar.gz samba-c2d70af1a7b0a67283837a9f823158fd7f8db574.tar.bz2 samba-c2d70af1a7b0a67283837a9f823158fd7f8db574.zip |
s4-dsdb: added DSDB_CONTROL_DBCHECK
this will be used for overrides by the dbcheck validator
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source4/dsdb/pydsdb.c | 1 | ||||
-rw-r--r-- | source4/dsdb/samdb/samdb.h | 3 | ||||
-rw-r--r-- | source4/setup/schema_samba4.ldif | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c index 18c2f7b72f..2ff6b824d1 100644 --- a/source4/dsdb/pydsdb.c +++ b/source4/dsdb/pydsdb.c @@ -1151,4 +1151,5 @@ void initdsdb(void) ADD_DSDB_STRING(DSDB_SYNTAX_BINARY_DN); ADD_DSDB_STRING(DSDB_SYNTAX_STRING_DN); ADD_DSDB_STRING(DSDB_SYNTAX_OR_NAME); + ADD_DSDB_STRING(DSDB_CONTROL_DBCHECK); } diff --git a/source4/dsdb/samdb/samdb.h b/source4/dsdb/samdb/samdb.h index 4c89f24247..aedd3db4ff 100644 --- a/source4/dsdb/samdb/samdb.h +++ b/source4/dsdb/samdb/samdb.h @@ -99,6 +99,9 @@ struct dsdb_control_password_change_status { /* passed when we want special behaviour for partial replicas */ #define DSDB_CONTROL_PARTIAL_REPLICA "1.3.6.1.4.1.7165.4.3.18" +/* passed when we want special behaviour for dbcheck */ +#define DSDB_CONTROL_DBCHECK "1.3.6.1.4.1.7165.4.3.19" + struct dsdb_control_password_change { const struct samr_Password *old_nt_pwd_hash; const struct samr_Password *old_lm_pwd_hash; diff --git a/source4/setup/schema_samba4.ldif b/source4/setup/schema_samba4.ldif index 496a73296e..bfa6dd094a 100644 --- a/source4/setup/schema_samba4.ldif +++ b/source4/setup/schema_samba4.ldif @@ -193,6 +193,7 @@ #Allocated: LDB_CONTROL_PROVISION_OID 1.3.6.1.4.1.7165.4.3.16 #Allocated: DSDB_CONTROL_NO_GLOBAL_CATALOG 1.3.6.1.4.1.7165.4.3.17 #Allocated: DSDB_CONTROL_PARTIAL_REPLICA 1.3.6.1.4.1.7165.4.3.18 +#Allocated: DSDB_CONTROL_DBCHECK 1.3.6.1.4.1.7165.4.3.19 # Extended 1.3.6.1.4.1.7165.4.4.x #Allocated: DSDB_EXTENDED_REPLICATED_OBJECTS_OID 1.3.6.1.4.1.7165.4.4.1 |