ansible-role-basic-system-s.../tasks/tmpreaper.yml

32 lines
997 B
YAML
Raw Normal View History

2020-10-29 18:21:13 +01:00
---
- name: Install tmpreaper on Debian/Ubuntu
when:
- tmpreaper_install
- ansible_distribution_file_variety == "Debian"
tags: tmpreaper
2020-10-29 18:21:13 +01:00
block:
- name: Install tmpreaper
ansible.builtin.apt: pkg=tmpreaper state=latest cache_valid_time=1800
- name: Change the date check criteria from ctime to mtime
ansible.builtin.lineinfile:
path: /etc/cron.daily/tmpreaper
2022-12-23 17:39:03 +01:00
regexp: '^ --ctime \\'
2022-12-23 17:40:35 +01:00
line: ' --mtime \'
2022-12-23 17:37:02 +01:00
when: not tmpreaper_use_ctime
2020-10-29 18:21:13 +01:00
- name: Install the tmpreaper configuration
ansible.builtin.template: src=tmpreaper.conf.j2 dest=/etc/tmpreaper.conf owner=root group=root mode=0444
2020-10-29 18:21:13 +01:00
- name: Remove tmpreaper on Debian/Ubuntu
2020-10-29 18:21:13 +01:00
when:
- not tmpreaper_install
2020-10-29 18:21:13 +01:00
- ansible_distribution_file_variety == "Debian"
tags: tmpreaper
block:
- name: Remove the tmpreaper package
ansible.builtin.apt: pkg=tmpreaper state=absent
2020-10-29 18:21:13 +01:00
- name: Remove the tmpreaper configuration
ansible.builtin.file: dest=/etc/tmpreaper.conf state=absent