File: reinstalling.yml

package info (click to toggle)
ansible-core 2.19.0~beta6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,628 kB
  • sloc: python: 180,313; cs: 4,929; sh: 4,601; xml: 34; makefile: 21
file content (31 lines) | stat: -rw-r--r-- 1,407 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
- name: Rerun installing a collection with a dep
  command: 'ansible-galaxy collection install git+file://{{ test_repo_path }}/.git#/collection_1/'
  register: installed

- name: SCM collections don't have a concrete artifact version so the collection should always be reinstalled
  assert:
    that:
      - "'Created collection for ansible_test.collection_1' in installed.stdout"
      - "'Created collection for ansible_test.collection_2' in installed.stdout"

- name: The collection should also be reinstalled when --force flag is used
  command: 'ansible-galaxy collection install git+file://{{ test_repo_path }}/.git#/collection_1/ --force'
  register: installed

- assert:
    that:
      - "'Created collection for ansible_test.collection_1' in installed.stdout"
      # The dependency is also an SCM collection, so it should also be reinstalled
      - "'Created collection for ansible_test.collection_2' in installed.stdout"

- name: The collection should also be reinstalled when --force-with-deps is used
  command: 'ansible-galaxy collection install git+file://{{ test_repo_path }}/.git#/collection_1/ --force-with-deps'
  register: installed

- assert:
    that:
      - "'Created collection for ansible_test.collection_1' in installed.stdout"
      - "'Created collection for ansible_test.collection_2' in installed.stdout"

- include_tasks: ./empty_installed_collections.yml
  when: cleanup