1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Ansible_Project/roles/nodejs/tasks/main.yml
2022-05-17 15:45:42 +02:00

17 lines
338 B
YAML

---
- name: "Install dependencies"
ansible.builtin.apt:
name:
- nodejs
- npm
update_cache: true
cache_valid_time: 86400
- name: "Create npm home dir for www-data"
ansible.builtin.file:
path: "/var/www/.npm"
state: directory
owner: www-data
group: www-data
mode: "0750"
become_user: root