Add some banner messages explaining the major steps of lorax.
This commit is contained in:
parent
57c97b576c
commit
5ef8b9eafb
@ -102,6 +102,10 @@ if __name__ == "__main__":
|
|||||||
sys.stderr.write("ERROR: Missing repo to use for image generation.\n")
|
sys.stderr.write("ERROR: Missing repo to use for image generation.\n")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
print("\n+=======================================================+")
|
||||||
|
print("| Setting up work directories and configuration data... |")
|
||||||
|
print("+=======================================================+\n")
|
||||||
|
|
||||||
# collect all repos specified on the command line. the first repo is
|
# collect all repos specified on the command line. the first repo is
|
||||||
# designated the main repo (I guess)
|
# designated the main repo (I guess)
|
||||||
repo, extrarepos = pylorax.collectRepos(args)
|
repo, extrarepos = pylorax.collectRepos(args)
|
||||||
@ -117,11 +121,19 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
buildarch = pylorax.getBuildArch()
|
buildarch = pylorax.getBuildArch()
|
||||||
|
|
||||||
|
print("\n+================================================+")
|
||||||
|
print("| Creating instroot tree to build images from... |")
|
||||||
|
print("+================================================+\n")
|
||||||
|
|
||||||
# upd-instroot
|
# upd-instroot
|
||||||
if not pylorax.instroot.createInstRoot(yumconf=yumconf, arch=buildarch, treedir=treedir, updates=updates):
|
if not pylorax.instroot.createInstRoot(yumconf=yumconf, arch=buildarch, treedir=treedir, updates=updates):
|
||||||
sys.stderr.write("ERROR: Could not create inst root.\n")
|
sys.stderr.write("ERROR: Could not create inst root.\n")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
print("\n+=======================================+")
|
||||||
|
print("| Writing meta data to instroot tree... |")
|
||||||
|
print("+=======================================+\n")
|
||||||
|
|
||||||
# write .treeinfo file
|
# write .treeinfo file
|
||||||
if not pylorax.treeinfo.write(family=product, variant=variant, version=version, arch=buildarch, outdir=output):
|
if not pylorax.treeinfo.write(family=product, variant=variant, version=version, arch=buildarch, outdir=output):
|
||||||
sys.stderr.write("Error writing %s/.treeinfo file.\n" % (output,))
|
sys.stderr.write("Error writing %s/.treeinfo file.\n" % (output,))
|
||||||
|
Loading…
Reference in New Issue
Block a user