diff options
author | Stephen Smoogen <smooge@redhat.com> | 2017-02-15 20:47:06 +0000 |
---|---|---|
committer | Stephen Smoogen <smooge@redhat.com> | 2017-02-15 20:47:06 +0000 |
commit | b8f571aa863d2b13f51fdcb8ce07200cb4f8630e (patch) | |
tree | 36a9a1d77c60e74f3b49911e33f41975978c9deb | |
parent | 4ab43e5ffecfe357fb880f4a1d19c7517d329267 (diff) | |
parent | 95605fa454b4bafcf5ac4013331959f76873a5a1 (diff) | |
download | ansible-b8f571aa863d2b13f51fdcb8ce07200cb4f8630e.tar.gz ansible-b8f571aa863d2b13f51fdcb8ce07200cb4f8630e.tar.xz ansible-b8f571aa863d2b13f51fdcb8ce07200cb4f8630e.zip |
Merge branch 'master' of /git/ansible
-rw-r--r-- | roles/mbs/common/templates/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index d245d456d..fb6bb8108 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -98,8 +98,10 @@ class ProdConfiguration(BaseConfiguration): LOG_LEVEL = 'debug' LOG_BACKEND = 'console' + # Yes, use tls. PDC_INSECURE = False - PDC_DEVELOP = False + # No, don't try to obtain a token (we just read. we don't write.) + PDC_DEVELOP = True KOJI_CONFIG = path.join(confdir, 'koji.conf') {% if env == 'staging' %} |