diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-03 18:26:57 -0600 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-03 18:26:57 -0600 |
| commit | 4ad015634fb1bd99098abe6bbb3543d2930f3ee5 (patch) | |
| tree | a456f154afa6edbb73832ab056e5fc0fefab2649 /salt | |
| parent | eff68e066b1cb323ae9f66f154040429e391f98f (diff) | |
adding npm for gradle builds
Diffstat (limited to 'salt')
| -rw-r--r-- | salt/openbook/ansible/files/gradle.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/salt/openbook/ansible/files/gradle.yaml b/salt/openbook/ansible/files/gradle.yaml index 8d5bf6b..04bed5a 100644 --- a/salt/openbook/ansible/files/gradle.yaml +++ b/salt/openbook/ansible/files/gradle.yaml @@ -12,7 +12,7 @@ update_cache: yes when: ansible_distribution == "Ubuntu" - - name: "Install gradle package" + - name: "Install packages" apt: pkg: "{{ item }}" state: present @@ -25,7 +25,7 @@ update_cache: yes when: ansible_distribution == "RedHat" or ansible_distribution == "CentOS" - - name: "Install gradle package" + - name: "Install packages" yum: name: "{{ item }}" state: present @@ -33,10 +33,11 @@ - gradle when: ansible_distribution == "RedHat" or ansible_distribution == "CentOS" - - name: "Install icedtea package" + - name: "Install packages" portage: name: "{{ item }}" state: present with_items: - dev-java/gradle-bin + - net-libs/nodejs when: ansible_distribution == "Gentoo" |
