--- - import_playbook: "include/deploy-kvm-guest.yml myhosts=zm" - name: configure instance hosts: zm user: root gather_facts: true vars_files: - "{{ ansible_private }}/vars.yml" pre_tasks: - name: mount /export mount: name: /export src: LABEL=/export fstype: xfs opts: noatime,noexec,nosuid,nodev passno: "0" dump: "0" state: mounted roles: - base - mod_auth_gssapi - role: kerberos/keytab keytab: /etc/httpd/httpd.keytab principals: HTTP/zm.foo.sh@FOO.SH group: apache - zoneminder tasks: - name: require authentication for munin web copy: dest: /etc/httpd/conf.local.d/zoneminder-auth.conf content: | AuthType GSSAPI GssapiBasicAuth Off AuthName "Password Required" Require valid-user mode: 0644 owner: root group: "{{ ansible_wheel }}" notify: restart apache