openstack-ansible-rsyslog_c.../tasks/rsyslog_client_post_install...

74 lines
1.9 KiB
YAML

---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Stop rsyslog
service:
name: "rsyslog"
state: "stopped"
failed_when: false
- name: Rsyslog Setup
copy:
src: "50-default.conf"
dest: "/etc/rsyslog.d/50-default.conf"
owner: "root"
group: "root"
- name: Find all log files
shell: |
find -L '{{ rsyslog_client_log_dir }}' -type f -name '*.log'
register: log_files
when: >
rsyslog_client_log_dir is defined
- name: Write rsyslog config for found log files
template:
src: "rsyslog.conf.j2"
dest: "/etc/rsyslog.conf"
owner: "root"
group: "root"
- name: Union the log files
set_fact:
rsyslog_client_all_log_files: "{{ log_files.stdout_lines | default([]) | union(rsyslog_client_log_files) }}"
- name: Write rsyslog target file
template:
src: "99-rsyslog.conf.j2"
dest: "/etc/rsyslog.d/{{ rsyslog_client_config_name }}"
owner: "root"
group: "root"
when: (rsyslog_client_all_log_files | length) > 0
- name: Write log rotate file
template:
src: "logrotate.j2"
dest: "/etc/logrotate.d/{{ rsyslog_client_log_rotate_file }}"
owner: "root"
group: "root"
when: (rsyslog_client_all_log_files | length) > 0
- name: Configure logrotate to compress logs by default
lineinfile:
dest: /etc/logrotate.conf
regexp: "^#compress"
line: "compress"
backrefs: yes
- name: Start rsyslog
service:
name: "rsyslog"
state: "started"