diff options
author | Troy Dawson <tdawson@redhat.com> | 2015-08-27 15:23:44 -0500 |
---|---|---|
committer | Troy Dawson <tdawson@redhat.com> | 2015-08-27 15:23:44 -0500 |
commit | ede0fd9a75f3f0927f95cf542be0cb4a9448c96d (patch) | |
tree | d630e3f95ce950fbbfe664075048d63d3278c51d /playbooks/aws | |
parent | 2483b7767d4e56e41e9890adfffe4bdc1480a11b (diff) | |
parent | f0d03d257f2186c91e99c06e34be737468ea6ad6 (diff) | |
download | openshift-ede0fd9a75f3f0927f95cf542be0cb4a9448c96d.tar.gz openshift-ede0fd9a75f3f0927f95cf542be0cb4a9448c96d.tar.bz2 openshift-ede0fd9a75f3f0927f95cf542be0cb4a9448c96d.tar.xz openshift-ede0fd9a75f3f0927f95cf542be0cb4a9448c96d.zip |
Merge pull request #518 from tdawson/201508logrotate
Update syslog logrotate to compress and rotate daily
Diffstat (limited to 'playbooks/aws')
-rw-r--r-- | playbooks/aws/openshift-cluster/tasks/launch_instances.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml index e9ebc3e02..b77bcdc1a 100644 --- a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml @@ -159,6 +159,22 @@ type: "{{host_type}}" when: host_type != "node" +- set_fact: + logrotate: + - name: syslog + path: "/var/log/cron + \n/var/log/maillog + \n/var/log/messages + \n/var/log/secure + \n/var/log/spooler \n" + options: + - daily + - rotate 7 + - compress + - sharedscripts + scripts: + postrotate: "/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true" + - name: Add new instances groups and variables add_host: hostname: "{{ item.0 }}" @@ -169,6 +185,7 @@ ec2_private_ip_address: "{{ item.1.private_ip }}" ec2_ip_address: "{{ item.1.public_ip }}" openshift_node_labels: "{{ node_label }}" + logrotate_scripts: "{{ logrotate }}" with_together: - instances - ec2.instances |