[FIX] Usersettings: Explicitly install to user_dir

This commit is contained in:
Jannik Beyerstedt 2022-06-16 11:07:42 +02:00
parent 0b814c6d61
commit 759fcd48d0
7 changed files with 31 additions and 25 deletions

View file

@ -4,7 +4,7 @@
- name: usersetup - Check, if usersetup already ran
ansible.builtin.stat:
path: .ansbl-common-usersetup
path: "{{ ansible_user_dir }}/.ansbl-common-usersetup"
register: common_usersetup
- name: usersetup - Change login shell to zsh for current user
@ -40,5 +40,5 @@
when:
- common_usersetup.stat.exists == false
ansible.builtin.file:
path: .ansbl-common-usersetup
path: "{{ ansible_user_dir }}/.ansbl-common-usersetup"
state: touch