livemedia-creator: start using /var/tmp instead of /tmp
This commit is contained in:
parent
878e4c3e85
commit
84fdff0e50
@ -554,7 +554,7 @@ if __name__ == '__main__':
|
|||||||
parser.add_argument( "--lorax-templates", default="/usr/share/lorax/",
|
parser.add_argument( "--lorax-templates", default="/usr/share/lorax/",
|
||||||
type=os.path.abspath,
|
type=os.path.abspath,
|
||||||
help="Path to mako templates for lorax" )
|
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" )
|
help="Top level temporary directory" )
|
||||||
parser.add_argument( "--resultdir", default=None, dest="result_dir",
|
parser.add_argument( "--resultdir", default=None, dest="result_dir",
|
||||||
type=os.path.abspath,
|
type=os.path.abspath,
|
||||||
@ -659,6 +659,8 @@ if __name__ == '__main__':
|
|||||||
log.error("virt-install requires libvirt to be installed.")
|
log.error("virt-install requires libvirt to be installed.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
tempfile.tempdir = opts.tmp
|
||||||
|
|
||||||
# Make the disk image
|
# Make the disk image
|
||||||
if not opts.disk_image:
|
if not opts.disk_image:
|
||||||
# Parse the kickstart to get the partition sizes
|
# Parse the kickstart to get the partition sizes
|
||||||
|
Loading…
Reference in New Issue
Block a user