├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── converge.yml │ └── molecule.yml ├── tasks └── main.yml ├── templates └── etc │ ├── logrotate.conf.j2 │ └── logrotate.d │ └── application.j2 └── vars ├── CentOS.yml ├── Debian.yml ├── RedHat.yml └── Ubuntu.yml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/etc/logrotate.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/templates/etc/logrotate.conf.j2 -------------------------------------------------------------------------------- /templates/etc/logrotate.d/application.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/templates/etc/logrotate.d/application.j2 -------------------------------------------------------------------------------- /vars/CentOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/vars/CentOS.yml -------------------------------------------------------------------------------- /vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/vars/Debian.yml -------------------------------------------------------------------------------- /vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/vars/RedHat.yml -------------------------------------------------------------------------------- /vars/Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arillso/ansible.logrotate/HEAD/vars/Ubuntu.yml --------------------------------------------------------------------------------