18 lines
544 B
YAML
18 lines
544 B
YAML
---
|
|
|
|
- name: '[INSTALLDEPS] - Add Nodesource apt key.'
|
|
apt_key:
|
|
url: https://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x1655A0AB68576280
|
|
id: "68576280"
|
|
state: present
|
|
|
|
- name: '[INSTALLDEPS] - Add repository for nodejs'
|
|
apt_repository:
|
|
repo: deb https://deb.nodesource.com/node_{{ etherpad_nodejs_version }}.x {{ ansible_distribution_release }} main
|
|
state: present
|
|
filename: 'nodesource'
|
|
|
|
- name: '[INSTALLDEPS] - Install dependencies'
|
|
apt:
|
|
name: "{{ etherpad_apt }}"
|
|
update_cache: yes
|