mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1ab2a5f1bc
* Add default license header to files which have no copyright or license header yet. * yml extension should have been xml...
68 lines
2.1 KiB
YAML
68 lines
2.1 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: 'Remove any node modules'
|
|
file:
|
|
path: '{{ remote_dir }}/node_modules'
|
|
state: absent
|
|
|
|
- vars:
|
|
# sample: node-v8.2.0-linux-x64.tar.xz
|
|
node_path: '{{ remote_dir }}/{{ nodejs_path }}/bin'
|
|
package: 'ncp'
|
|
block:
|
|
- shell: npm --version
|
|
environment:
|
|
PATH: '{{ node_path }}:{{ ansible_env.PATH }}'
|
|
register: npm_version
|
|
|
|
- debug:
|
|
var: npm_version.stdout
|
|
|
|
- name: 'Install simple package with no_bin_links disabled'
|
|
npm:
|
|
path: '{{ remote_dir }}'
|
|
executable: '{{ node_path }}/npm'
|
|
state: present
|
|
name: '{{ package }}'
|
|
no_bin_links: false
|
|
environment:
|
|
PATH: '{{ node_path }}:{{ ansible_env.PATH }}'
|
|
register: npm_install_no_bin_links_disabled
|
|
|
|
- name: 'Make sure .bin folder has been created'
|
|
stat:
|
|
path: "{{ remote_dir }}/node_modules/.bin"
|
|
register: npm_dotbin_folder_disabled
|
|
|
|
- name: 'Remove any node modules'
|
|
file:
|
|
path: '{{ remote_dir }}/node_modules'
|
|
state: absent
|
|
|
|
- name: 'Install simple package with no_bin_links enabled'
|
|
npm:
|
|
path: '{{ remote_dir }}'
|
|
executable: '{{ node_path }}/npm'
|
|
state: present
|
|
name: '{{ package }}'
|
|
no_bin_links: true
|
|
environment:
|
|
PATH: '{{ node_path }}:{{ ansible_env.PATH }}'
|
|
register: npm_install_no_bin_links_enabled
|
|
|
|
- name: 'Make sure .bin folder has not been created'
|
|
stat:
|
|
path: "{{ remote_dir }}/node_modules/.bin"
|
|
register: npm_dotbin_folder_enabled
|
|
|
|
- assert:
|
|
that:
|
|
- npm_install_no_bin_links_disabled is success
|
|
- npm_install_no_bin_links_disabled is changed
|
|
- npm_install_no_bin_links_enabled is success
|
|
- npm_install_no_bin_links_enabled is changed
|
|
- npm_dotbin_folder_disabled.stat.exists
|
|
- not npm_dotbin_folder_enabled.stat.exists
|