1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

Bug #4702: Custom inputs in oneflow cannot contain spaces

This commit is contained in:
Jaime Melis 2016-08-08 17:04:53 +02:00
parent f517b12193
commit 5c1059a789

View File

@ -460,7 +460,7 @@ post '/service_template/:id/action' do
if role["user_inputs_values"]
role["vm_template_contents"] ||= ""
role["user_inputs_values"].each{ |key, value|
role["vm_template_contents"] += "\n#{key}=#{value}"
role["vm_template_contents"] += "\n#{key}=\"#{value}\""
}
end
}