Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions playbooks/aws/openshift-cluster/tasks/launch_instances.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@
- rotate 7
- compress
- sharedscripts
- missingok
scripts:
postrotate: "/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true"

Expand Down
3 changes: 1 addition & 2 deletions roles/openshift_facts/library/openshift_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,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

Expand Down