diff options
author | Petr Spacek <pspacek@redhat.com> | 2015-01-13 10:14:43 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2015-01-13 11:53:00 +0100 |
commit | 2ff8ced5175f8def1b07786d20b64c1450be0567 (patch) | |
tree | 728e1fe8ae95e90a3b2461421d7048ff6d135016 /ipalib/constants.py | |
parent | a18ef90284f627bdde1e264e5e3db3a52031feec (diff) | |
download | freeipa-2ff8ced5175f8def1b07786d20b64c1450be0567.tar.gz freeipa-2ff8ced5175f8def1b07786d20b64c1450be0567.tar.xz freeipa-2ff8ced5175f8def1b07786d20b64c1450be0567.zip |
Fix default value type for wait_for_dns option
wait_for_dns value should be an integer so default value was changed from
False to 0.
Reviewed-By: Martin Kosek <mkosek@redhat.com>
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index df31a2088..50a2b1f7a 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -147,7 +147,7 @@ DEFAULT_CONFIG = ( ('debug', False), ('startup_traceback', False), ('mode', 'production'), - ('wait_for_dns', False), + ('wait_for_dns', 0), # CA plugin: ('ca_host', FQDN), # Set in Env._finalize_core() |