From 16e1f18afed039e8703434dfe0b598fcfdd66f15 Mon Sep 17 00:00:00 2001 From: Kelven Yang Date: Fri, 24 Feb 2012 13:28:55 -0800 Subject: [PATCH] bug 13987: a regression was caused by typo. Reviewed-By:Anthony --- core/src/com/cloud/storage/template/VmdkProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/cloud/storage/template/VmdkProcessor.java b/core/src/com/cloud/storage/template/VmdkProcessor.java index f3dbbda3fea..2e1e1f42d06 100644 --- a/core/src/com/cloud/storage/template/VmdkProcessor.java +++ b/core/src/com/cloud/storage/template/VmdkProcessor.java @@ -64,7 +64,7 @@ public class VmdkProcessor implements Processor { File templateFile = new File(templateFileFullPath); Script command = new Script("tar", 0, s_logger); - command.add("--no-same-owner", templateFileFullPath); + command.add("--no-same-owner"); command.add("-xf", templateFileFullPath); command.setWorkDir(templateFile.getParent()); String result = command.execute();