--- # Install molly-guard - name: Install molly-guard when: ansible_os_family == "Debian" apt: name: molly-guard state: present update_cache: true register: apt_result retries: 3 until: apt_result is succeeded # Always ask for hostname - name: Configure molly-guard lineinfile: dest: /etc/molly-guard/rc regexp: '^#*\s*ALWAYS_QUERY_HOSTNAME.*$' line: 'ALWAYS_QUERY_HOSTNAME=true'