Add some more signal output.
This commit is contained in:
parent
fe9f08b13f
commit
230bcee79b
@ -67,8 +67,11 @@ def collectRepos(args):
|
|||||||
repolist = []
|
repolist = []
|
||||||
for repospec in args:
|
for repospec in args:
|
||||||
if repospec.startswith('/'):
|
if repospec.startswith('/'):
|
||||||
repolist.append("file://%s" % (repospec,))
|
repo = "file://%s" % (repospec,)
|
||||||
|
print("Adding local repo:\n %s" % (repo,))
|
||||||
|
repolist.append(repo)
|
||||||
elif repospec.startswith('http://') or repospec.startswith('ftp://'):
|
elif repospec.startswith('http://') or repospec.startswith('ftp://'):
|
||||||
|
print("Adding remote repo:\n %s" % (repospec,))
|
||||||
repolist.append(repospec)
|
repolist.append(repospec)
|
||||||
|
|
||||||
repo = repolist[0]
|
repo = repolist[0]
|
||||||
@ -76,6 +79,7 @@ def collectRepos(args):
|
|||||||
|
|
||||||
if len(repolist) > 1:
|
if len(repolist) > 1:
|
||||||
for extra in repolist[1:]:
|
for extra in repolist[1:]:
|
||||||
|
print("Adding extra repo:\n %s" % (extra,))
|
||||||
extrarepos.append(extra)
|
extrarepos.append(extra)
|
||||||
|
|
||||||
return repo, extrarepos
|
return repo, extrarepos
|
||||||
@ -96,6 +100,12 @@ def initializeDirs(output):
|
|||||||
treedir = tempfile.mkdtemp('XXXXXX', 'treedir.', conf['tmpdir'])
|
treedir = tempfile.mkdtemp('XXXXXX', 'treedir.', conf['tmpdir'])
|
||||||
cachedir = tempfile.mkdtemp('XXXXXX', 'yumcache.', conf['tmpdir'])
|
cachedir = tempfile.mkdtemp('XXXXXX', 'yumcache.', conf['tmpdir'])
|
||||||
|
|
||||||
|
print("Working directories:")
|
||||||
|
print(" tmpdir = %s" % (conf['tmpdir'],)
|
||||||
|
print(" buildinstdir = %s" % (buildinstdir,))
|
||||||
|
print(" treedir = %s" % (treedir,))
|
||||||
|
print(" cachedir = %s" % (cachedir,))
|
||||||
|
|
||||||
return buildinstdir, treedir, cachedir
|
return buildinstdir, treedir, cachedir
|
||||||
|
|
||||||
def writeYumConf(cachedir=None, repo=None, extrarepos=[], mirrorlist=[]):
|
def writeYumConf(cachedir=None, repo=None, extrarepos=[], mirrorlist=[]):
|
||||||
@ -149,6 +159,8 @@ def writeYumConf(cachedir=None, repo=None, extrarepos=[], mirrorlist=[]):
|
|||||||
n += 1
|
n += 1
|
||||||
|
|
||||||
f.close()
|
f.close()
|
||||||
|
print("Wrote lorax yum configuration to %s" % (yumconf,))
|
||||||
|
|
||||||
return yumconf
|
return yumconf
|
||||||
|
|
||||||
def getBuildArch(yumconf=None):
|
def getBuildArch(yumconf=None):
|
||||||
@ -191,6 +203,8 @@ def getBuildArch(yumconf=None):
|
|||||||
if ret_arch is None:
|
if ret_arch is None:
|
||||||
ret_arch = uname_arch
|
ret_arch = uname_arch
|
||||||
|
|
||||||
|
print("Building images for %s" % (ret_arch,))
|
||||||
|
|
||||||
return ret_arch
|
return ret_arch
|
||||||
|
|
||||||
def cleanup(trash=[]):
|
def cleanup(trash=[]):
|
||||||
|
Loading…
Reference in New Issue
Block a user