mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
12 lines
241 B
YAML
12 lines
241 B
YAML
---
|
|
- include_tasks: debian_family.yml
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
- include_tasks: redhat_family.yml
|
|
when: ansible_os_family == "RedHat"
|
|
|
|
- name: Install yarn
|
|
command: npm install -g yarn
|
|
become: yes
|
|
become_user: root
|
|
... |