| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2017-02-10 | getncchanges script: use library code, not copied functions. | Douglas Bagnall | 1 | -75/+2 | |
| These functions were duplicates. To be exact, the diff -ub between what getncchanges had, and what drs_uitls now has is this: |@@ -1,4 +1,5 @@ |-def do_DsBind(drs): |+def drs_DsBind(drs): | '''make a DsBind call, returning the binding handle''' | bind_info = drsuapi.DsBindInfoCtr() | bind_info.length = 28 |@@ -32,7 +33,8 @@ | bind_info.info.supported_extensions |= drsuapi.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7 | bind_info.info.supported_extensions |= drsuapi.DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT | (info, handle) = drs.DsBind(misc.GUID(drsuapi.DRSUAPI_DS_BIND_GUID), bind_info) |- return handle |+ |+ return (handle, info.info.supported_extensions) | | | def drs_get_rodc_partial_attribute_set(samdb): |@@ -43,7 +45,7 @@ | attids = [] | | # the exact list of attids we send is quite critical. Note that |- # we do ask for the secret attributes, but set set SPECIAL_SECRET_PROCESSING |+ # we do ask for the secret attributes, but set SPECIAL_SECRET_PROCESSING | # to zero them out | schema_dn = samdb.get_schema_basedn() | res = samdb.search(base=schema_dn, scope=ldb.SCOPE_SUBTREE, |@@ -71,3 +73,4 @@ | partial_attribute_set.attids = attids | partial_attribute_set.num_attids = len(attids) | return partial_attribute_set while the drs_utils code has changed in moving drs_get_rodc_partial_attribute_set() out of the class. Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> | |||||
| 2013-01-22 | devel-script: add options for RODC and partial replica for replicate flags | Matthieu Patou | 1 | -1/+21 | |
| Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Jan 22 00:12:17 CET 2013 on sn-devel-104 | |||||
| 2013-01-21 | devel-scripts: ask with WRIT_REP by default | Matthieu Patou | 1 | -0/+1 | |
| Reviewed-by: Andrew Bartlett <abartlet@samba.org> | |||||
| 2013-01-21 | devel-getncchange: try to find the dest_dsa automatically | Matthieu Patou | 1 | -3/+19 | |
| Reviewed-by: Andrew Bartlett <abartlet@samba.org> | |||||
| 2013-01-01 | s4:scripting/python: always treat the highwatermark as opaque (bug #9508) | Stefan Metzmacher | 1 | -1/+1 | |
| Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> | |||||
| 2011-08-06 | s4-scripting: allow to specify the number max of iteration around getNcChanges | Matthieu Patou | 1 | -1/+4 | |
| 2010-09-29 | s4-devel: added new options to getncchanges script | Andrew Tridgell | 1 | -9/+65 | |
| added --pas, --dest-dsa and --replica-flags options Pair-Programmed-With: Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | |||||
| 2010-09-21 | s4-devel-getncchanges: Add common Samba options as a group to be displayed | Kamen Mazdrashki | 1 | -0/+1 | |
| Those options are processed but never shown with --help argument | |||||
| 2010-08-23 | s4-devel: added a getncchanges developer script | Andrew Tridgell | 1 | -0/+120 | |
| this allows for command line access to getncchanges it also provides a good example of calling DRSUAPI interfaces from python Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
