2021-07-29 22:30:20 +02:00
|
|
|
---
|
|
|
|
###################################################
|
|
|
|
- name: Install collection netbox.netbox
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: collection
|
|
|
|
name: netbox.netbox
|
|
|
|
register: install_c0
|
|
|
|
|
|
|
|
- name: Assert collection was installed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_c0 is changed
|
|
|
|
- '"netbox.netbox" in install_c0.new_collections'
|
|
|
|
|
|
|
|
- name: Install collection netbox.netbox (again)
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: collection
|
|
|
|
name: netbox.netbox
|
|
|
|
register: install_c1
|
|
|
|
|
|
|
|
- name: Assert collection was not installed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_c1 is not changed
|
|
|
|
|
|
|
|
###################################################
|
|
|
|
- name: Install role ansistrano.deploy
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: role
|
|
|
|
name: ansistrano.deploy
|
|
|
|
register: install_r0
|
|
|
|
|
|
|
|
- name: Assert collection was installed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_r0 is changed
|
|
|
|
- '"ansistrano.deploy" in install_r0.new_roles'
|
|
|
|
|
|
|
|
- name: Install role ansistrano.deploy (again)
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: role
|
|
|
|
name: ansistrano.deploy
|
|
|
|
register: install_r1
|
|
|
|
|
|
|
|
- name: Assert role was not installed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_r1 is not changed
|
|
|
|
|
|
|
|
###################################################
|
|
|
|
- name:
|
|
|
|
set_fact:
|
2021-09-09 07:31:44 +02:00
|
|
|
reqs_file: '{{ remote_tmp_dir }}/reqs.yaml'
|
2021-07-29 22:30:20 +02:00
|
|
|
|
|
|
|
- name: Copy requirements file
|
|
|
|
copy:
|
|
|
|
src: 'files/test.yml'
|
|
|
|
dest: '{{ reqs_file }}'
|
|
|
|
|
|
|
|
- name: Install from requirements file
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: both
|
|
|
|
requirements_file: "{{ reqs_file }}"
|
|
|
|
register: install_rq0
|
|
|
|
ignore_errors: true
|
|
|
|
|
2022-04-26 11:51:01 +02:00
|
|
|
- name: Assert requirements file was installed
|
2021-07-29 22:30:20 +02:00
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_rq0 is changed
|
|
|
|
- '"geerlingguy.java" in install_rq0.new_roles'
|
|
|
|
- '"geerlingguy.php_roles" in install_rq0.new_collections'
|
|
|
|
|
|
|
|
- name: Install from requirements file (again)
|
|
|
|
community.general.ansible_galaxy_install:
|
|
|
|
type: both
|
|
|
|
requirements_file: "{{ reqs_file }}"
|
|
|
|
register: install_rq1
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- name: Assert requirements file was not installed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- install_rq1 is not changed
|