review inventory

This commit is contained in:
vincent 2021-03-22 21:29:09 +01:00
parent f98c534526
commit 07af650388

View File

@ -22,6 +22,17 @@
state: present # not required. choices: absent;present. Whether the account should exist or not, taking action if the state is different from what is stated. state: present # not required. choices: absent;present. Whether the account should exist or not, taking action if the state is different from what is stated.
become: yes become: yes
- name: test if user bash rc exist
stat:
path: /home/{{user.name}}/.bashrc
register: links
- name: delete bashrc if needed
file:
path: "{{ links.stat.path }}"
state: absent
when: links.stat.islnk is defined and not links.stat.islnk
- name: apply stow config - name: apply stow config
shell: stow * shell: stow *
args: args:
@ -33,4 +44,4 @@
args: args:
chdir: /home/{{user.name}}/conf2 chdir: /home/{{user.name}}/conf2
when: config_download.changed == true when: config_download.changed == true
become: yes become: yes