From 65a0d9c726d19ac594de003f83eb69a58ea21a4f Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Dec 12 2016 14:09:55 +0000 Subject: Default krb_rdns to None Using `False` as default value will break setups where the value is not specified and is expected to be `True`; for example `rhpkg` will not be able to talk to Brew. This patch removes the empty value, so that the option is only used when actually specified in config. Signed-off-by: Lubomír Sedlář --- diff --git a/pyrpkg/__init__.py b/pyrpkg/__init__.py index e3fd456..247356f 100644 --- a/pyrpkg/__init__.py +++ b/pyrpkg/__init__.py @@ -248,7 +248,7 @@ class Commands(object): 'topurl': 'http://localhost/kojiroot', 'use_fast_upload': None, 'weburl': 'http://localhost/koji', - 'krb_rdns': False, + 'krb_rdns': None, } # Process the configs in order, global, user, then any option passed