Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorSebastian Dziallas <sebastian@when.com>2009-03-19 16:24:08 (GMT)
committer Sebastian Dziallas <sebastian@when.com>2009-03-19 16:24:08 (GMT)
commit5be79f78b797c81540d8c9764bc8b62ef3a21248 (patch)
tree23d6a818db4c9f12cf37218a6ed31e661bdc621f /build
parent67b6f900b2f5de6464c6b1be0cc6dfdc95caaed0 (diff)
fix appliance package argument in build file
Diffstat (limited to 'build')
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index 626501f..3fb1819 100755
--- a/build
+++ b/build
@@ -54,11 +54,11 @@ def main():
creator = appcreate.ApplianceImageCreator(ks, 'soas2-appliance', 'vmdk', '512', '1')
try:
- creator.mount(cache_dir)
+ creator.mount(cachedir=cache_dir)
creator.install()
creator.configure()
creator.unmount()
- creator.package(appliances_dir)
+ creator.package(destdir=appliances_dir, "none", "")
except imgcreate.CreatorError, e:
logging.error("Unable to create appliance : %s" % e)
return 1