From: Steven Dake Date: Wed, 28 Mar 2012 00:02:27 +0000 (-0700) Subject: Fix heat jeos_create F16 x86_64 litters files X-Git-Tag: 2014.1~2149 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=21f1f7abd279e53ad6dc9a6f2065ec3a0bda2f1a;p=openstack-build%2Fheat-build.git Fix heat jeos_create F16 x86_64 litters files Fixes Issue #41. Output the file to /dev/null instead Signed-off-by: Steven Dake --- diff --git a/bin/heat b/bin/heat index 894085d0..20e36280 100755 --- a/bin/heat +++ b/bin/heat @@ -267,7 +267,7 @@ def jeos_create(options, arguments): if options.debug: extra_opts = ' -d 3 ' - res = os.system("oz-install %s -t 50000 -u %s" % (extra_opts, tdl_path)) + res = os.system("oz-install %s -t 50000 -u %s -x /dev/null" % (extra_opts, tdl_path)) if res == 256: sys.exit(1) if not os.access(dsk_filename, os.R_OK):