1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

M #~: Fix ssh checkbox when instantiate template ()

This commit is contained in:
Sergio Betanzos 2021-05-18 11:39:04 +02:00 committed by GitHub
parent c5874b73cc
commit bbc8bb1bab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -188,6 +188,10 @@ define(function(require) {
? nic["RDP"] = "YES"
: delete nic["RDP"];
(Boolean($("input#" + that.id + "_ssh", context).prop("checked")))
? nic["SSH"] = "YES"
: delete nic["SSH"];
if ( !nic["NETWORK_MODE"] || ( nic["NETWORK_MODE"] && nic["NETWORK_MODE"] !== "auto" ) )
{
var ip4 = $("input.manual_ip4", $(this)).val();