mirror of
https://github.com/frappe/bench.git
synced 2024-11-13 16:56:33 +00:00
348e38f37a
- broken down the node install into multiple parts based on OS - change the default node version to be installed from 6 to 8
14 lines
331 B
YAML
14 lines
331 B
YAML
---
|
|
# Install's prerequisites, like fonts, image libraries, vim, screen, python-dev and gcc
|
|
|
|
- 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
|
|
... |