1 2 3 4 5 6 7 8 9 10 11 12 13 14
--- - name: Copy to var-www on hosts hosts: all gather_facts: false tasks: - ansible.posix.synchronize: src: _site/ dest: /var/www/html/hazelthats.me delete: true group: false perms: false rsync_timeout: 10 times: false