add common dependencies that need their own repositories

This commit is contained in:
Bryan Black 2022-10-26 21:19:27 -07:00
parent 923fd9b9d4
commit 64597a7d69
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,24 @@
- name: Remove node
become_user: root
become: true
apt:
state: absent
update_cache: yes
cache_valid_time: 604800
pkg:
- nodejs
- name: add node apt repository
become_user: root
become: true
ansible.builtin.shell: "curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - "
- name: Install node
become_user: root
become: true
apt:
state: present
update_cache: yes
cache_valid_time: 604800
pkg:
- nodejs

View file

@ -0,0 +1,3 @@
- import_tasks: install-node.yml
tags:
- install-node