Split out fzf from zsh into its own role
This commit is contained in:
4
roles/fzf/handlers/main.yaml
Normal file
4
roles/fzf/handlers/main.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
- name: install fzf binaries
|
||||
command:
|
||||
cmd: ~/.local/src/fzf/install --bin
|
||||
5
roles/fzf/tasks/Darwin.yaml
Normal file
5
roles/fzf/tasks/Darwin.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: install homebrew package
|
||||
homebrew:
|
||||
name: fzf
|
||||
state: latest
|
||||
13
roles/fzf/tasks/Debian-old.yaml
Normal file
13
roles/fzf/tasks/Debian-old.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
- name: clone fzf repo
|
||||
git:
|
||||
repo: https://github.com/junegunn/fzf.git
|
||||
dest: ~/.local/src/fzf
|
||||
notify: install fzf binaries
|
||||
- meta: flush_handlers
|
||||
|
||||
- name: create symbolic links
|
||||
file:
|
||||
state: link
|
||||
src: ~/.local/src/fzf/bin/fzf
|
||||
dest: ~/.local/bin/fzf
|
||||
12
roles/fzf/tasks/Debian.yaml
Normal file
12
roles/fzf/tasks/Debian.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
- name: install apt package
|
||||
when: ansible_distribution == "Debian" and
|
||||
ansible_distribution_version == "unstable"
|
||||
become: true
|
||||
apt:
|
||||
name: fzf
|
||||
state: latest
|
||||
|
||||
- include_tasks: Debian-old.yaml
|
||||
when: not (ansible_distribution == "Debian" and
|
||||
ansible_distribution_version == "unstable")
|
||||
5
roles/fzf/tasks/Windows.yaml
Normal file
5
roles/fzf/tasks/Windows.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: install chocolatey package
|
||||
win_chocolatey:
|
||||
name: fzf
|
||||
state: latest
|
||||
2
roles/fzf/tasks/main.yaml
Normal file
2
roles/fzf/tasks/main.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||
Reference in New Issue
Block a user