init.yml 156 B

123456
  1. - name: create downloads folder
  2. become: true
  3. ansible.builtin.file:
  4. path: "{{ app_downloads }}"
  5. state: directory
  6. owner: "{{ ansible_user }}"