From: Kristof Provost Date: Mon, 29 Apr 2024 21:50:40 +0000 (+0200) Subject: pull: do not install nginx X-Git-Url: https://git.sigsegv.be/?a=commitdiff_plain;h=2128a0170fefec8a5133c9f4779ddb0f33305531;p=pennestraat-domotica 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. --- 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