Rename computername provisioning property to hostname

cusax-fix
Ingo Bauersachs 13 years ago
parent 60d70c9b96
commit 524632e2f1

@ -311,7 +311,7 @@ private File retrieveConfigurationFile(String url)
url = url.replace("${ipaddr}", ipaddr.getHostAddress());
}
if(url.indexOf("${computername}") != -1)
if(url.indexOf("${hostname}") != -1)
{
String name;
if(OSUtils.IS_WINDOWS)
@ -323,7 +323,7 @@ private File retrieveConfigurationFile(String url)
{
name = ipaddr.getHostName();
}
url = url.replace("${computername}", name);
url = url.replace("${hostname}", name);
}
if(url.indexOf("${hwaddr}") != -1)

Loading…
Cancel
Save