1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-21 13:57:56 +03:00

M #-: Fix ansible version error message (#2595)

This commit is contained in:
Jan Orel 2023-05-10 16:38:41 +02:00 committed by GitHub
parent fafc1e0a94
commit 7090682691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,8 +79,7 @@ module OneProvision
if (version < ansible_min) || (version >= ansible_max)
Utils.fail("Unsupported Ansible ver. #{version}, " \
"must be >= #{ANSIBLE_VERSION[0]} " \
"and < #{ANSIBLE_VERSION[1]}")
"must be >= #{ansible_min} and < #{ansible_max}")
end
return if provision.nil? || !provision.hci?