Get NGINX status with an Ansible playbook – Debian
I try to install NGINX from an Ansible playbook. Currently I use this playbook to install it: --- - hosts: all gather_facts: true become: true become_user: root tasks: - apt: name: nginx when: ansible_os_family == "Debian" And it works: Identity…