fix: ensure correct ownership for .1password directory and .agent-bridge.sh script
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 35s
Nix Format Check / check-format (push) Failing after 1m27s
Python Lint Check / check-python (push) Failing after 22s

This commit is contained in:
2025-07-16 13:27:40 +02:00
parent c56cf48be9
commit b4ff9c95fc

View File

@@ -14,11 +14,15 @@
path: "{{ ansible_env.HOME }}/.1password"
state: directory
mode: '0700'
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
- name: Create .agent-bridge.sh in home directory
ansible.builtin.copy:
dest: "{{ ansible_env.HOME }}/.agent-bridge.sh"
mode: '0755'
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
content: |
# Code extracted from https://stuartleeks.com/posts/wsl-ssh-key-forward-to-windows/