@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
14 lines (12 loc) • 444 B
YAML
- name: "Ensure '%USERPROFILE%/.config/himalaya' directory exists"
become_user: "{{ user.username }}"
ansible.windows.win_file:
path: '%USERPROFILE%\.config\himalaya'
state: directory
- name: "Ensure {{ app_name }}'s configuration file is created"
become_user: "{{ user.username }}"
ansible.windows.win_copy:
dest: '%USERPROFILE%\.config\himalaya\config.toml'
content: "{{ user.himalaya_config }}"
backup: true