ansible-zsh-chic/tasks/antibody.yml

22 lines
444 B
YAML
Raw Normal View History

2020-08-07 19:59:07 +02:00
---
- name: Download antibody installer
get_url:
url: https://git.io/antibody
dest: /tmp/antibody-installer.sh
owner: root
group: root
mode: 0755
- name: Run antibody installer
shell:
cmd: /tmp/antibody-installer.sh
chdir: /usr
- name: Copy antibody plugin list
template:
src: templates/antibody.plugins.zsh.j2
dest: /usr/share/zsh/antibody.plugins.zsh
owner: root
group: root
mode: 0755