Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.
This commit is contained in:
parent
23343af106
commit
813cf57d54
78 changed files with 885 additions and 70 deletions
16
roles/antidote/tasks/installation.yml
Normal file
16
roles/antidote/tasks/installation.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
# Installing antidote.
|
||||
|
||||
- name: Creating destination folder
|
||||
ansible.builtin.file:
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.zsh/antidote"
|
||||
state: directory
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
mode: "0755"
|
||||
|
||||
- name: Installing antidote with git
|
||||
ansible.builtin.git:
|
||||
repo: "https://github.com/mattmc3/antidote.git"
|
||||
dest: "{{ lookup('ansible.builtin.env','HOME' ) }}/.zsh/antidote"
|
||||
depth: 1
|
Loading…
Add table
Add a link
Reference in a new issue