Files
vms/ansible/roles/cleanup/tasks/CentOS.yml
T
Greg HellingsandGitHub 0a3832d2c4 Add CentOS (#12)
* Add CentOS 7

* Fix rawhide boot

* Test locale versions
2022-06-22 10:00:04 -05:00

9 lines
178 B
YAML

- name: clean yum history
become: true
ansible.builtin.shell: |-
set -e
yum clean all
yum history new
truncate -c -s 0 /var/log/yum.log
changed_when: false