7 lines
257 B
YAML
7 lines
257 B
YAML
# Mark all files under the real autostart source as executable
|
|
- name: Mark all files under dotfiles autostart as executable
|
|
ansible.builtin.file:
|
|
path: "{{ lookup('env', 'DOTFILES_PATH') }}/config/autostart"
|
|
mode: "u+x,g+x,o+x"
|
|
recurse: true
|