diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2015-06-17 13:50:32 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2015-06-29 17:11:53 +0200 |
commit | 5397150979a474f6df82e6df5287e1cc678a3479 (patch) | |
tree | 1a271252be9322a62c87eb889e45723565bbede8 /ipalib/constants.py | |
parent | 659b88b8205ef403aa9162453472e4731d93d13b (diff) | |
download | freeipa-5397150979a474f6df82e6df5287e1cc678a3479.tar.gz freeipa-5397150979a474f6df82e6df5287e1cc678a3479.tar.xz freeipa-5397150979a474f6df82e6df5287e1cc678a3479.zip |
Verify replication topology for a suffix
Checks done:
1. check if the topology is not disconnected. In other words if
there are replication paths between all servers.
2. check if servers don't have more than a recommended number of
replication agreements(4)
https://fedorahosted.org/freeipa/ticket/4302
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index 330f9df74..a062505c3 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -170,6 +170,10 @@ DEFAULT_CONFIG = ( # KRA plugin ('kra_host', FQDN), # Set in Env._finalize_core() + # Topology plugin + ('recommended_max_agmts', 4), # Recommended maximum number of replication + # agreements + # Special CLI: ('prompt_all', False), ('interactive', True), |