From 2f0ec2a6e17786a2efc9fbbd4a0291a0c5c96483 Mon Sep 17 00:00:00 2001 From: Tobias Date: Sun, 5 Jul 2026 09:21:16 +0000 Subject: [PATCH] Add playbooks/software.yml --- playbooks/software.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 playbooks/software.yml diff --git a/playbooks/software.yml b/playbooks/software.yml new file mode 100644 index 0000000..e4538f0 --- /dev/null +++ b/playbooks/software.yml @@ -0,0 +1,21 @@ +- name: install required software + hosts: apache-intranet + become: yes + tasks: + - name: install software + apt: + name: + - curl + - bc + state: present + update_cache: yes + +###check_ssl_cert depends on the above + + - name: install check_ssl_cert + ansible.builtin.get_url: + url: https://raw.githubusercontent.com/matteocorti/check_ssl_cert/master/check_ssl_cert + dest: /usr/local/bin/check_ssl_cert + mode: '0755' + owner: root + group: root \ No newline at end of file