Fix heat jeos_create F16 x86_64 litters files

Fixes Issue #41.

Output the file to /dev/null instead

Signed-off-by: Steven Dake <sdake@redhat.com>
This commit is contained in:
Steven Dake 2012-03-27 17:02:27 -07:00
parent 9b23feadae
commit 21f1f7abd2
1 changed files with 1 additions and 1 deletions

View File

@ -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):