2346e5ced4
This change implements a change in the file name for each service so that the log rotate files don't collide when running on a shared host. Change-Id: Ia42656e4568c43667d610aa8421d2fa25437e2aa Closes-Bug: 1499799
72 lines
1.9 KiB
YAML
72 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
|
|
tags:
|
|
- rsyslog-client-config
|
|
|
|
- name: Rsyslog Setup
|
|
copy:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "root"
|
|
with_items:
|
|
- { src: "50-default.conf", dest: "/etc/rsyslog.d/50-default.conf" }
|
|
tags:
|
|
- rsyslog-client-config
|
|
|
|
- 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
|
|
tags:
|
|
- rsyslog-client-config
|
|
|
|
- name: Write rsyslog config for found log files
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "root"
|
|
group: "root"
|
|
with_items:
|
|
- { src: "99-rsyslog.conf.j2", dest: "/etc/rsyslog.d/{{ rsyslog_client_config_name }}" }
|
|
- { src: "os_aggregate_storage.j2", dest: "/etc/logrotate.d/{{ rsyslog_client_log_rotate_file }}" }
|
|
- { src: "rsyslog.conf.j2", dest: "/etc/rsyslog.conf" }
|
|
tags:
|
|
- rsyslog-client-config
|
|
|
|
- name: Configure logrotate to compress logs by default
|
|
lineinfile:
|
|
dest: /etc/logrotate.conf
|
|
regexp: "^#compress"
|
|
line: "compress"
|
|
backrefs: yes
|
|
tags:
|
|
- rsyslog-client-config
|
|
|
|
- name: Start rsyslog
|
|
service:
|
|
name: "rsyslog"
|
|
state: "started"
|
|
tags:
|
|
- rsyslog-client-config
|