ansible/roles/codimd/tasks/0_apt_dependencies.yml

30 lines
693 B
YAML
Raw Normal View History

2019-02-07 13:37:11 +01:00
---
# For NodeJS package
- name: Configure NodeJS pin
when:
- ansible_distribution == 'Debian'
- ansible_distribution_release == 'stretch'
2019-02-07 13:37:11 +01:00
template:
2019-02-19 10:42:57 +01:00
src: apt/nodejs.j2
2019-02-09 07:58:06 +01:00
dest: /etc/apt/preferences.d/nodejs
2019-02-07 13:37:11 +01:00
mode: 0644
2019-03-04 15:08:05 +01:00
# TODO
# apt-transport-https
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
# echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
2019-02-07 13:37:11 +01:00
# Install CodiMD dependencies
- name: Install required packages
apt:
2019-03-11 18:02:29 +01:00
name:
- git
- nodejs
- npm
- build-essential
- yarn
update_cache: true
register: apt_result
retries: 3
until: apt_result is succeeded