Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0E73110D57 for ; Wed, 3 Jul 2013 15:14:07 +0000 (UTC) Received: (qmail 46421 invoked by uid 500); 3 Jul 2013 15:14:06 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 46373 invoked by uid 500); 3 Jul 2013 15:14:06 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 46366 invoked by uid 99); 3 Jul 2013 15:14:06 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jul 2013 15:14:06 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D5CDA55B63; Wed, 3 Jul 2013 15:14:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aprateek@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to d2739cd Date: Wed, 3 Jul 2013 15:14:05 +0000 (UTC) Updated Branches: refs/heads/master 9ba36fd17 -> d2739cde2 Fix file name in DnsMasqConfigCommand Signed-off-by: Abhinandan Prateek Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d2739cde Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d2739cde Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d2739cde Branch: refs/heads/master Commit: d2739cde2ed824ee2477bcd3ac4016f84e365990 Parents: 9ba36fd Author: Harikrishna Patnala Authored: Wed Jul 3 18:31:16 2013 +0530 Committer: Abhinandan Prateek Committed: Wed Jul 3 20:43:42 2013 +0530 ---------------------------------------------------------------------- .../src/com/cloud/hypervisor/vmware/resource/VmwareResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d2739cde/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java ---------------------------------------------------------------------- diff --git a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java index f60882d..ab30ec7 100755 --- a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java +++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/resource/VmwareResource.java @@ -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];