Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Fixed bug which produce error: "The task includes an option with an u…
Browse files Browse the repository at this point in the history
…ndefined variable. The error was: float object has no element 0" in text vs float comparison (#63)

Co-authored-by: Volodymyr Hetmanshchuk <[email protected]>
  • Loading branch information
vladget and Volodymyr Hetmanshchuk authored Sep 3, 2021
1 parent 911f831 commit 65a5585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/install/dnf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
dnf:
name: "{{ clickhouse_package | map('regex_replace', '$', '-' + clickhouse_version) | list }}"
state: present
disable_gpg_check: "{{ true if clickhouse_version == 19.4.0 else omit }}"
disable_gpg_check: "{{ true if clickhouse_version == '19.4.0' else omit }}"
become: true
tags: [install]
when: clickhouse_version != 'latest'
2 changes: 1 addition & 1 deletion tasks/install/yum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
yum:
name: "{{ clickhouse_package | map('regex_replace', '$', '-' + clickhouse_version) | list }}"
state: present
disable_gpg_check: "{{ true if clickhouse_version == 19.4.0 else omit }}"
disable_gpg_check: "{{ true if clickhouse_version == '19.4.0' else omit }}"
become: true
tags: [install]
when: clickhouse_version != 'latest'

0 comments on commit 65a5585

Please sign in to comment.