Rimozione indicazione esplicita dello username.

This commit is contained in:
Emiliano Vavassori 2024-10-01 09:17:39 +02:00
parent 0d6f22439d
commit e8fc9fffaa
16 changed files with 37 additions and 99 deletions

View file

@ -3,14 +3,13 @@
- name: Creating destination folder
ansible.builtin.file:
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.zsh/antidote"
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.zsh/antidote"
state: directory
owner: syntaxerrormmm
group: syntaxerrormmm
mode: "0755"
mode: '0755'
- name: Installing antidote with git
# noqa: latest[git]
ansible.builtin.git:
repo: "https://github.com/mattmc3/antidote.git"
dest: "{{ lookup('ansible.builtin.env','HOME' ) }}/.zsh/antidote"
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.zsh/antidote"
depth: 1