19

我正在寻找合适的 Ansible Role 或 Ansible YAML 文件,用于在 Ubuntu 16.04.3 xenial 系统上安装 NodeJS LTS。我尝试了来自 Galaxy 的 10 多个 Ansible 角色,但没有发现其中任何一个有效(抛出错误,例如potentially dangerous to add this PPA etc..

谁能提供任何 Ansible 剧本或建议我在 Ubuntu 16.04 上安装 NodeJS LTS 的角色?

4

4 回答 4

27

这是工作示例:

---
- hosts: all
  gather_facts: yes
  become: yes
  vars:
    NODEJS_VERSION: "8"
    ansible_distribution_release: "xenial" #trusty
  tasks:
    - name: Install the gpg key for nodejs LTS
      apt_key:
        url: "https://deb.nodesource.com/gpgkey/nodesource.gpg.key"
        state: present

    - name: Install the nodejs LTS repos
      apt_repository:
        repo: "deb https://deb.nodesource.com/node_{{ NODEJS_VERSION }}.x {{ ansible_distribution_release }} main"
        state: present
        update_cache: yes

    - name: Install the nodejs
      apt:
        name: nodejs
        state: present

希望对你有帮助

于 2017-08-23T15:44:26.320 回答
7

公认的答案很好,但如果您愿意,您可以使用发现的变量作为发行代号(即ansible_lsb.codename)。此外,确保gcc g++ make安装在主机上可确保 nodejs 的本机插件能够正常工作。

只需将节点版本替换12为您想要的。

---
- name: Install nodejs
  hosts: all
  become: true
  tasks:
    - name: install nodejs prerequisites
      apt:
        name:
          - apt-transport-https
          - gcc
          - g++
          - make
        state: present
    - name: add nodejs apt key
      apt_key:
        url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
        state: present
    - name: add nodejs repository
      apt_repository:
        repo: deb https://deb.nodesource.com/node_12.x {{ ansible_lsb.codename }} main
        state: present
        update_cache: yes
    - name: install nodejs
      apt:
        name: nodejs
        state: present
于 2020-04-27T20:14:10.953 回答
6

并不是说我真的很高兴不得不这样做,但是......

环境:Ubuntu 18.04,ansible 2.6.1,主机:macOS

来自https://github.com/nodesource/distributions/blob/master/README.md#debinstall

- name: install node 
  shell: |
    curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - && sudo apt-get install -y nodejs

结果:

> vagrant@vagrant:~$ node --version
v10.15.2

并且npm一定也出现了:

vagrant@vagrant:~$ npm --version
6.4.1

在我运行此程序时,https: //www.npmjs.com/package/npm显示6.8.0是最新的,而6.4.1是 6 个月前的。Node 将10.15.2显示为 10.x 系列中的最新版本,日期为 5 天前。

顺便说一句,我也尝试过apt-get,但以节点 8.x 而不是 10.x 结束

我没有使用 ansible galaxy 角色的原因是我没有看到任何似乎来自知名作者并且有很多星星和下载的 nodejs 角色(我很谨慎和怀疑)。

更新 npm

我的开发机器有6.8.0,所以我添加了这个:

vars.yml

versions:
  npm: "6.8.0"

剧本.yml

- name: npm self-update
  command: npm install npm@{{ versions.npm }} -g

这让我一直到:

vagrant@vagrant:~$ npm --version
6.8.0
于 2019-03-05T05:20:53.630 回答
1

您可以使用:

ansible-galaxy install nodesource.node

然后在你的剧本上,添加 roles: - nodesource.node

于 2018-01-30T17:10:51.530 回答