Rimozione indicazione esplicita dello username.
This commit is contained in:
parent
0d6f22439d
commit
e8fc9fffaa
16 changed files with 37 additions and 99 deletions
|
@ -3,10 +3,8 @@
|
|||
|
||||
- name: Assuring the conf.d folder exists
|
||||
ansible.builtin.file:
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.zsh/conf.d"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME') }}/.zsh/conf.d"
|
||||
state: directory
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
mode: '0755'
|
||||
|
||||
- name: Building lazy-loading list
|
||||
|
@ -15,3 +13,4 @@
|
|||
antidote bundle < {{ dotfdir }}/zsh/antibody_plugins.txt > ~/.zsh/conf.d/000_antidote.zsh
|
||||
args:
|
||||
executable: /usr/bin/zsh
|
||||
changed_when: true
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue