├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── tasks └── main.yml ├── templates └── logrotate.d.j2 └── tests ├── Vagrantfile ├── inventory └── test.yml /.gitignore: -------------------------------------------------------------------------------- 1 | tests/.vagrant 2 | test.retry 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/logrotate.d.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/templates/logrotate.d.j2 -------------------------------------------------------------------------------- /tests/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/tests/Vagrantfile -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickhammond/ansible-logrotate/HEAD/tests/test.yml --------------------------------------------------------------------------------