Ansible role which installs and configures logrotate
Go to file
Bryan Black f41b0326bb
Update main.yml
2020-09-29 00:58:39 -07:00
defaults Update main.yml 2020-09-29 00:28:11 -07:00
meta Update main.yml 2020-09-29 00:58:39 -07:00
tasks Add check to deploy config if log exists 2020-09-17 22:23:16 +02:00
templates/etc Add check to deploy config if log exists 2020-09-17 22:23:16 +02:00
vars Import github.com/arillso/ansible.logrotate 2020-09-09 16:17:43 +02:00
LICENSE Initial commit 2020-08-20 22:25:51 -07:00
README.md Update README.md 2020-09-29 00:21:33 -07:00

README.md

ansible-logrotate-plusplus

Description

Ansible role which installs and configures logrotate It can test if paths exist before writing a logrotate config to the server. Load the roles default vars with custom paths and per path parameters, and run the playbook across a dynamic infrastructure and only write logerotate rules to the appropriate system with the correct paths present.

This project was based of https://github.com/arillso/ansible.logrotate 1.5.2 (038649f793)

This Ansible role was made possible by: Ansible consultant Serge van Ginderachter of Ginsys:


Serge van Ginderachter

📖

Ginsys

🌐

Installation

  ansible-galaxy install stationgroup.ansible_logrotate_plusplus

Requirements

None

Role Variables

imclude files

Path to the imclude files.

logrotate_include_dir: /etc/logrotate.d

logrotate_use_hourly_rotation

Enable hourly rotation with cron.

logrotate_use_hourly_rotation: false

logrotate options

List of global options.

logrotate_options:
  - weekly
  - rotate 4
  - create
  - dateext
  - su root syslog

Package

package name to install logrotate.

logrotate_package: logrotate

default config

logroate for wtmp

logrotate_wtmp:
  logs:
    - /var/log/wtmp
  options:
    - missingok
    - monthly
    - create 0664 root utmp
    - rotate 1

logroate for btmp

logrotate_btmp:
  logs:
    - /var/log/btmp
  options:
    - missingok
    - monthly
    - create 0660 root utmp
    - rotate 1

applications config

More log files can be added that will logorate.

logrotate_applications: []

Example

The following options are available.

logrotate_applications:
  - name: name-your-log-rotate-application
    definitions:
      - logs:
          - /var/log/apt/term.log
          - /var/log/apt/history.log
        options:
          - rotate 12
          - monthly
          - missingok
          - notifempty

Dependencies

None

Example Playbook

- hosts: all
  roles:
    - stationgroup.ansible_logrotate_plusplus

License

This project is under the MIT License.