mirror of https://github.com/apache/cloudstack.git
Fix file name in DnsMasqConfigCommand
Signed-off-by: Abhinandan Prateek <aprateek@apache.org>
This commit is contained in:
parent
9ba36fd173
commit
d2739cde2e
|
|
@ -2118,7 +2118,7 @@ public class VmwareResource implements StoragePoolResource, ServerResource, Vmwa
|
|||
|
||||
DnsMasqConfigurator configurator = new DnsMasqConfigurator();
|
||||
String [] config = configurator.generateConfiguration(cmd);
|
||||
String tmpConfigFilePath = "/tmp/"+ routerIp.replace(".","-")+".cfg";
|
||||
String tmpConfigFilePath = "/tmp/"+ routerIp.replace(".","_")+".cfg";
|
||||
String tmpConfigFileContents = "";
|
||||
for (int i = 0; i < config.length; i++) {
|
||||
tmpConfigFileContents += config[i];
|
||||
|
|
|
|||
Loading…
Reference in New Issue