Fix addHost for Xen after FOSS/premium merge

This commit is contained in:
Kelven Yang 2011-01-31 10:12:52 -08:00
parent 940712c675
commit 5cb25036a3
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,9 @@ public class XenServer56Resource extends CitrixResourceBase {
}
File file = new File(patchfilePath);
files.add(file);
// no premimum overriding anymore after FOSS/premium merge
/*
patch = "premium-scripts/vm/hypervisor/xenserver/xenserver56/patch";
patchfilePath = Script.findScript("", patch);
if (patchfilePath == null) {
@ -118,6 +121,7 @@ public class XenServer56Resource extends CitrixResourceBase {
}
file = new File(patchfilePath);
files.add(file);
*/
return files;
}