mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
11 lines
307 B
YAML
11 lines
307 B
YAML
---
|
|
- name: 'Add Node.js PPA'
|
|
tags: 'nodejs'
|
|
become: 'yes'
|
|
become_method: 'sudo'
|
|
shell: "curl --silent --location https://rpm.nodesource.com/setup_{{ node_version }}.x | sudo bash -"
|
|
|
|
- name: Install node v{{ node_version }}
|
|
yum: name=nodejs state=present
|
|
when: ansible_os_family == 'RedHat'
|
|
... |