Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
converge.yml 573 B
Newer Older
---
- name: Converge
  hosts: all
  become: true
  tasks:
    - name: Include nodejs role
      ansible.builtin.include_role:
        name: nodejs
      vars:
        nodejs_download_url: "https://nodejs.org/dist/v20.11.0/node-v20.11.0-linux-x64.tar.xz"
        nodejs_checksum: "sha256:822780369d0ea309e7d218e41debbd1a03f8cdf354ebf8a4420e89f39cc2e612"
        nodejs_install_path: "/opt/nodejs/20.11.0"
  environment:
    http_proxy: "{{ lookup('env', 'http_proxy') }}"
    https_proxy: "{{ lookup('env', 'https_proxy') }}"
    no_proxy: "{{ lookup('env', 'no_proxy') }}"