Skip to content
Snippets Groups Projects
Commit c57150aa authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: check for existence of .vimrc skel file before copying it

parent cbf792fa
No related branches found
No related tags found
1 merge request!1ND-1759
---
### VIM SKEL FÜR PROCESSING USER ###
- name: check if vim skel exists
stat:
path: "/etc/skel/.vimrc"
register: vimrc_skel
- name: copy vim skel to processing users
copy:
remote_src: true
src: "/etc/skel/.vimrc"
dest: "/home/{{ vault_subapp_user }}/.vimrc"
when: vimrc_skel.stat.exists
tags: [users]
### ALIASES ERSTELLEN ###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment