livemedia-creator: start using /var/tmp instead of /tmp

This commit is contained in:
Brian C. Lane 2012-05-11 13:12:17 -07:00
parent 878e4c3e85
commit 84fdff0e50
1 changed files with 3 additions and 1 deletions

View File

@ -554,7 +554,7 @@ if __name__ == '__main__':
parser.add_argument( "--lorax-templates", default="/usr/share/lorax/",
type=os.path.abspath,
help="Path to mako templates for lorax" )
parser.add_argument( "--tmp", default="/tmp", type=os.path.abspath,
parser.add_argument( "--tmp", default="/var/tmp", type=os.path.abspath,
help="Top level temporary directory" )
parser.add_argument( "--resultdir", default=None, dest="result_dir",
type=os.path.abspath,
@ -659,6 +659,8 @@ if __name__ == '__main__':
log.error("virt-install requires libvirt to be installed.")
sys.exit(1)
tempfile.tempdir = opts.tmp
# Make the disk image
if not opts.disk_image:
# Parse the kickstart to get the partition sizes