diff options
author | Diego Castro <spinolacastro@gmail.com> | 2015-08-12 20:05:11 -0300 |
---|---|---|
committer | Diego Castro <spinolacastro@gmail.com> | 2015-08-12 20:05:11 -0300 |
commit | e1382004e4c6e255878c0ca2b4621c901fba9225 (patch) | |
tree | be55554c6d19b6fe2f5e09c732531557fa72b187 /roles/openshift_facts/library | |
parent | d307f715764164c8f543d57486718f95b1987875 (diff) | |
download | openshift-e1382004e4c6e255878c0ca2b4621c901fba9225.tar.gz openshift-e1382004e4c6e255878c0ca2b4621c901fba9225.tar.bz2 openshift-e1382004e4c6e255878c0ca2b4621c901fba9225.tar.xz openshift-e1382004e4c6e255878c0ca2b4621c901fba9225.zip |
Configure Fluentd
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index 4e0989c5f..7e74f9617 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -317,9 +317,8 @@ def set_fluentd_facts_if_unset(facts): """ if 'common' in facts: - deployment_type = facts['common']['deployment_type'] if 'use_fluentd' not in facts['common']: - use_fluentd = True if deployment_type == 'online' else False + use_fluentd = False facts['common']['use_fluentd'] = use_fluentd return facts |