init.yml 358 B

1234567891011121314
  1. - name: Create downloads folder
  2. ansible.builtin.file:
  3. path: "{{ ansible_env.HOME }}/downloads/"
  4. state: directory
  5. - name: Create backup folder
  6. ansible.builtin.file:
  7. path: "{{ ansible_env.HOME }}/backups/"
  8. state: directory
  9. - name: Create local folder
  10. ansible.builtin.file:
  11. path: "{{ ansible_env.HOME }}/local/"
  12. state: directory