19 lines
485 B
YAML
19 lines
485 B
YAML
- name: RPM fetch
|
|
get_url:
|
|
url: https://github.com/smallstep/cli/releases/download/v0.28.2/step-cli_amd64.rpm
|
|
checksum: sha256:https://github.com/smallstep/cli/releases/download/v0.28.2/checksums.txt
|
|
dest: /tmp/
|
|
register: client_rpm
|
|
|
|
- name: RPM State present
|
|
dnf:
|
|
name: "{{ client_rpm.dest }}"
|
|
state: present
|
|
disable_gpg_check: True
|
|
when: '"OK" in client_rpm.msg'
|
|
|
|
- name: Required Host Packages State latest
|
|
dnf:
|
|
name: openssl
|
|
state: latest
|