mirror of
https://github.com/KevinMidboe/schleppe-ha-project.git
synced 2026-01-10 10:55:30 +00:00
14 lines
282 B
YAML
14 lines
282 B
YAML
---
|
|
- name: Get openssl version
|
|
hosts: all
|
|
|
|
tasks:
|
|
- name: Gather the package facts
|
|
ansible.builtin.package_facts:
|
|
manager: auto
|
|
|
|
- name: Install openssl version 3.0.6
|
|
ansible.builtin.package:
|
|
name: openssl=3.0.6
|
|
state: present
|