1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00
ansible_role_base/tasks/editor.yml

25 lines
593 B
YAML
Raw Normal View History

2019-07-15 23:07:17 +02:00
---
- name: vim is our editor
become: true
community.general.alternatives:
2019-07-15 23:07:17 +02:00
name: editor
path: /usr/bin/vim.basic
2019-07-16 16:53:03 +02:00
when:
- editor_is_vim | bool
- ansible_distribution != 'CentOS'
- ansible_distribution != 'RedHat'
2020-10-27 17:18:59 +01:00
- ansible_distribution != 'Archlinux'
2021-08-17 12:40:33 +02:00
failed_when: false
2019-07-16 16:53:03 +02:00
- name: vim is our editor
become: true
community.general.alternatives:
2019-07-16 16:53:03 +02:00
name: editor
path: /usr/bin/vim
when:
- editor_is_vim | bool
- ansible_distribution == 'CentOS'
- ansible_distribution == 'RedHat'
2020-10-27 17:18:59 +01:00
- ansible_distribution == 'Archlinux'
2021-08-17 12:40:33 +02:00
failed_when: false