mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-22 13:33:52 +03:00
M #-: Allow == to max_ansibe (due to need of 2.13) (#2847)
This commit is contained in:
parent
669aa32dd4
commit
3fa1eb58b8
@ -77,9 +77,9 @@ module OneProvision
|
||||
|
||||
ansible_min, ansible_max = provision.ansible_ver
|
||||
|
||||
if (version < ansible_min) || (version >= ansible_max)
|
||||
if (version < ansible_min) || (version > ansible_max)
|
||||
Utils.fail("Unsupported Ansible ver. #{version}, " \
|
||||
"must be >= #{ansible_min} and < #{ansible_max}")
|
||||
"must be >= #{ansible_min} and <= #{ansible_max}")
|
||||
end
|
||||
|
||||
return if provision.nil? || !provision.hci?
|
||||
|
Loading…
Reference in New Issue
Block a user