maintainer-test: remove f31 and el6 as they are EOL

This commit is contained in:
Mark O'Brien 2020-12-23 11:39:33 +00:00
parent e78782bfe4
commit de0c23e293
4 changed files with 0 additions and 30 deletions

View file

@ -70,23 +70,6 @@
tags:
- packages
- name: check if file can be created
copy:
content: ""
dest: /etc/sysconfig/global-update-applied
force: no
when: inventory_hostname.startswith(('f31-test'))
tags:
- packages
- name: remove test file
file:
path: /etc/sysconfig/global-update-applied
state: absent
when: inventory_hostname.startswith(('f31-test'))
tags:
- packages
- name: update all
command: dnf -y update creates=/etc/sysconfig/global-update-applied
register: updated
@ -94,13 +77,6 @@
tags:
- packages
- name: update all
command: dnf -y
when: inventory_hostname.startswith(('f31-test'))
tags:
- packages
- name: write out global-update-applied file if we updated
copy: content="updated" dest=/etc/sysconfig/global-update-applied
when: updated is defined