Merge pull request '1.0.34' (#21) from testing into main
Reviewed-on: #21
This commit is contained in:
commit
824a2ec1ec
@ -4,3 +4,5 @@ skip_list:
|
|||||||
- yaml[line-length]
|
- yaml[line-length]
|
||||||
- no-changed-when
|
- no-changed-when
|
||||||
- galaxy[no-changelog]
|
- galaxy[no-changelog]
|
||||||
|
- no-free-form
|
||||||
|
- package-latest
|
||||||
|
@ -8,7 +8,7 @@ namespace: jchristianh
|
|||||||
name: baseos
|
name: baseos
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: 1.0.33
|
version: 1.0.34
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
@ -1,29 +1,21 @@
|
|||||||
---
|
---
|
||||||
- name: Update package cache for Debian hosts
|
- name: Update package cache for Debian hosts
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
when:
|
when:
|
||||||
- ansible_distribution|lower == 'debian'
|
- "'apt' in ansible_pkg_mgr"
|
||||||
tags:
|
|
||||||
- skip_ansible_lint
|
|
||||||
|
|
||||||
|
|
||||||
- name: Update package cache for RHEL/CentOS/Fedora hosts
|
- name: Update package cache for RHEL/CentOS/Fedora hosts
|
||||||
dnf:
|
ansible.builtin.dnf:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
when:
|
when:
|
||||||
- (ansible_distribution|lower == 'centos' or
|
- "'dnf' in ansible_pkg_mgr"
|
||||||
ansible_distribution|lower == 'fedora' or
|
|
||||||
ansible_distribution|lower == 'redhat')
|
|
||||||
- ansible_distribution_major_version|int >= 8
|
- ansible_distribution_major_version|int >= 8
|
||||||
tags:
|
|
||||||
- skip_ansible_lint
|
|
||||||
|
|
||||||
|
|
||||||
- name: Update all host packages
|
- name: Update all host packages
|
||||||
package: name=* state=latest
|
ansible.builtin.package: name=* state=latest
|
||||||
tags:
|
|
||||||
- skip_ansible_lint
|
|
||||||
|
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user