diff options
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index b3642bc85..fc0560ba4 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -234,8 +234,12 @@ LDAP_GENERALIZED_TIME_FORMAT = "%Y%m%d%H%M%SZ" IPA_ANCHOR_PREFIX = ':IPA:' SID_ANCHOR_PREFIX = ':SID:' -MIN_DOMAIN_LEVEL = 0 -MAX_DOMAIN_LEVEL = 1 +# domains levels +DOMAIN_LEVEL_0 = 0 # compat +DOMAIN_LEVEL_1 = 1 # replica promotion, topology plugin + +MIN_DOMAIN_LEVEL = DOMAIN_LEVEL_0 +MAX_DOMAIN_LEVEL = DOMAIN_LEVEL_1 # Constants used in generation of replication agreements and as topology # defaults |