Fix exceptions for better, more concise, functionality
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -1,29 +1,21 @@
|
||||
---
|
||||
- name: Update package cache for Debian hosts
|
||||
apt:
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
when:
|
||||
- ansible_distribution|lower == 'debian'
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
- "'apt' in ansible_pkg_mgr"
|
||||
|
||||
|
||||
- name: Update package cache for RHEL/CentOS/Fedora hosts
|
||||
dnf:
|
||||
ansible.builtin.dnf:
|
||||
update_cache: true
|
||||
when:
|
||||
- (ansible_distribution|lower == 'centos' or
|
||||
ansible_distribution|lower == 'fedora' or
|
||||
ansible_distribution|lower == 'redhat')
|
||||
- "'dnf' in ansible_pkg_mgr"
|
||||
- ansible_distribution_major_version|int >= 8
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
|
||||
|
||||
- name: Update all host packages
|
||||
package: name=* state=latest
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
ansible.builtin.package: name=* state=latest
|
||||
|
||||
|
||||
...
|
||||
|
Reference in New Issue
Block a user