Skip to content

Commit 4789c79

Browse files
committed
Fix: make version checks actually skippable
1 parent a965c14 commit 4789c79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

etc/kayobe/ansible/check-kayobe-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
requirements_path: "{{ kayobe_config_path }}/../../requirements.txt"
88
tasks:
99
- name: Check version
10-
when: stackhpc_enable_kayobe_check
10+
when: stackhpc_enable_kayobe_check | bool
1111
check_mode: false
1212
block:
1313
- name: Get package info

etc/kayobe/ansible/check-kolla-ansible-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
gather_facts: false
66
tasks:
77
- name: Check version
8-
when: stackhpc_enable_kolla_ansible_check
8+
when: stackhpc_enable_kolla_ansible_check | bool
99
check_mode: false
1010
block:
1111
- name: Get current Kolla-Ansible tag

0 commit comments

Comments
 (0)