Make sure cmdline config file exists (#1348302)

If the --config file doesn't exist lorax will fall back to its defaults,
which are probably not what you want. Now it will exit if it doesn't
exist.

Resolves: rhbz#1348302
(cherry picked from commit 748259619b)
This commit is contained in:
Brian C. Lane 2016-06-20 12:03:14 -07:00
parent abfbd76af2
commit 9a64d851f1
1 changed files with 3 additions and 0 deletions

View File

@ -179,6 +179,9 @@ def main(args):
opts.logfile = os.path.abspath(opts.logfile)
if opts.config and not os.path.exists(opts.config):
parser.error("config file %s doesn't exist." % opts.config)
setup_logging(opts)
tempfile.tempdir = opts.tmp