install_rsync.yml 171 B

1234567891011
  1. ---
  2. - hosts: "{{ target }}"
  3. become: true
  4. tasks:
  5. # Verify rsync is installed
  6. - name: Ensure rsync is installed
  7. package:
  8. name: rsync
  9. state: latest