mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-21 09:22:18 +00:00
fix for logging string
This commit is contained in:
parent
7ee71ee5ec
commit
ff82835824
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ var dnsDomain = inputProperties.customProperties.domain;
|
||||||
var ipAddress = inputProperties.addresses[0];
|
var ipAddress = inputProperties.addresses[0];
|
||||||
var created = false;
|
var created = false;
|
||||||
if (staticDns == "true" && dnsHost.supportedDomains.indexOf(dnsDomain) >= 0) {
|
if (staticDns == "true" && dnsHost.supportedDomains.indexOf(dnsDomain) >= 0) {
|
||||||
System.log("Attempting to create DNS record for " + hostname + "." + ipAddress + "...");
|
System.log("Attempting to create DNS record for " + hostname + " @ " + ipAddress + "...");
|
||||||
var sshSession = new SSHSession(dnsHost.sshHost, dnsHost.sshUser);
|
var sshSession = new SSHSession(dnsHost.sshHost, dnsHost.sshUser);
|
||||||
System.debug("Connecting to " + dnsHost.sshHost + "...");
|
System.debug("Connecting to " + dnsHost.sshHost + "...");
|
||||||
sshSession.connectWithPassword(dnsHost.sshPass);
|
sshSession.connectWithPassword(dnsHost.sshPass);
|
||||||
|
|
Loading…
Reference in a new issue