SHA256
1
0

Migrate to new apps role

This commit is contained in:
2026-02-02 01:33:38 -05:00
parent 10e0d7ad9c
commit 6aefc82163
41 changed files with 616 additions and 905 deletions

View File

@@ -19,7 +19,7 @@
state: link
force: true
loop: "{{ scripts_files.files }}"
when: ansible_connection in ['local', 'localhost']
when: ansible_connection == 'local'
- name: "Deploy scripts (remote with copy)"
ansible.builtin.copy:
@@ -27,4 +27,4 @@
dest: "{{ ansible_facts.env.HOME }}/.local/bin/{{ item.path | basename }}"
mode: '0755'
loop: "{{ scripts_files.files }}"
when: ansible_connection not in ['local', 'localhost']
when: ansible_connection != 'local'