From 2128a0170fefec8a5133c9f4779ddb0f33305531 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Mon, 29 Apr 2024 23:50:40 +0200 Subject: [PATCH] pull: do not install nginx Don't install nginx from the pull playbook. Not all systems need nginx, and anyway, the pull playbook really only needs to ensure we can connect back to the systems. --- ansible/playbook-pull.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ansible/playbook-pull.yaml b/ansible/playbook-pull.yaml index 7ce3aa3..45f27a9 100644 --- a/ansible/playbook-pull.yaml +++ b/ansible/playbook-pull.yaml @@ -16,18 +16,3 @@ community.general.sysrc: name: http_port value: "{{ http_port }}" - - name: Install nginx - community.general.pkgng: - name: nginx - state: present - become: true - - name: Enable nginx - community.general.sysrc: - name: nginx_enable - value: "YES" - become: true - - name: Start nginx - ansible.builtin.service: - name: nginx - state: started - become: true -- 2.51.0