Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py", line 637, in cli_main
main()
File "/usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py", line 337, in main
latest_link_components=latest_link_components,
File "/usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py", line 533, in run_compose
extra_phase.stop()
File "/usr/lib/python3.6/site-packages/pungi/phases/weaver.py", line 57, in stop
self.pool.stop()
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
File "/usr/lib/python3.6/site-packages/six.py", line 693, in reraise
raise value
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
File "/usr/lib/python3.6/site-packages/pungi/phases/weaver.py", line 79, in process
phase.stop()
File "/usr/lib/python3.6/site-packages/pungi/phases/weaver.py", line 57, in stop
self.pool.stop()
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
File "/usr/lib/python3.6/site-packages/six.py", line 693, in reraise
raise value
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
File "/usr/lib/python3.6/site-packages/pungi/phases/weaver.py", line 79, in process
phase.stop()
File "/usr/lib/python3.6/site-packages/pungi/phases/base.py", line 108, in stop
self.pool.stop()
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
File "/usr/lib/python3.6/site-packages/six.py", line 693, in reraise
raise value
File "/usr/lib/python3.6/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
File "/usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py", line 84, in process
self.worker(compose, config, variant, arch)
File "/usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py", line 108, in worker
inherit_extra_files=config.get("inherit_extra_files", False),
File "/usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py", line 219, in get_iso_contents
mount_iso(bootiso_path, mnt_dir)
File "/usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py", line 195, in mount_iso
subprocess.run(cmd, shell=True, check=True)
File "/usr/lib64/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/mnt' returned non-zero exit status 32.
Frame run in /usr/lib64/python3.6/subprocess.py at line 438
431 except:
432 process.kill()
433 process.wait()
434 raise
435 retcode = process.poll()
436 if check and retcode:
437 raise CalledProcessError(retcode, process.args,
--> 438 output=stdout, stderr=stderr)
439 return CompletedProcess(process.args, retcode, stdout, stderr)
440
441
442 def list2cmdline(seq):
443 """
444 Translate a sequence of arguments into a command line
check = True
input = None
kwargs = {'shell': True}
popenargs = 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/mnt'
process =
retcode = 32
stderr = None
stdout = None
timeout = None
Frame mount_iso in /usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py at line 195
188
189 def get_iso_contents(
190 compose, variant, arch, include_variants, filename, bootable, inherit_extra_files
191 ):
192 def mount_iso(iso_path, mount_point):
193 # ??ISO???????
194 cmd = f"sudo mount -o loop {iso_path} {mount_point}"
--> 195 subprocess.run(cmd, shell=True, check=True)
196
197 def unmount_iso(mount_point):
198 # ??ISO??
199 cmd = f"sudo umount {mount_point}"
200 subprocess.run(cmd, shell=True, check=True)
201
cmd = 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/mnt'
iso_path = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso'
mount_point = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/mnt'
Frame get_iso_contents in /usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py at line 219
212 buildinstall_dir = os.path.join(buildinstall_dir, variant.uid)
213 # ??boot.iso??x86_64????boot.iso??boot/grub2/i386-pc????????????
214 bootiso_path = os.path.join(buildinstall_dir, "images/boot.iso")
215 if arch == "x86_64" and os.path.exists(bootiso_path):
216 print("Test-tencentos: bootiso_path exists and arch is x86_64")
217 mnt_dir=os.path.join(buildinstall_dir, "mnt")
218 makedirs(os.path.dirname(mnt_dir))
--> 219 mount_iso(bootiso_path, mnt_dir)
220 src_path = os.path.join(mnt_dir, "boot/grub2/i386-pc")
221 dst_path = os.path.join(buildinstall_dir, "boot/grub2/i386-pc")
222 if os.path.exists(src_path):
223 if not os.path.exists(dst_path):
224 print("Test-tencentos: start copy boot/grub2/i386-pc")
225 shutil.copytree(src_path,dst_path)
arch = 'x86_64'
bootable = True
bootiso_path = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso'
buildinstall_dir = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal'
compose =
filename = 'OpenCloudOS-9.0-minimal-x86_64.iso'
files = {}
include_variants = ['BaseOS']
inherit_extra_files = False
iso_dir = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/iso/OpenCloudOS-9.0-minimal-x86_64.iso'
mnt_dir = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/mnt'
mount_iso = .mount_iso at 0x7f8d69c35158>
unmount_iso = .unmount_iso at 0x7f8d69c35488>
variant = Variant(id="Minimal", name="Minimal", type="variant", parent=None)
Frame worker in /usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py at line 108
101 graft_points = get_iso_contents(
102 compose,
103 variant,
104 arch,
105 config["include_variants"],
106 filename,
107 bootable=bootable,
--> 108 inherit_extra_files=config.get("inherit_extra_files", False),
109 )
110
111 opts = createiso.CreateIsoOpts(
112 output_dir=iso_dir,
113 iso_name=filename,
114 volid=volid,
arch = 'x86_64'
bootable = True
compose =
config = {'include_variants': ['BaseOS'], 'filename': '{release_short}-9.0-minimal-{arch}{suffix}', 'skip_src': True, 'failable_arches': ['i386', 'i686'], 'inherit_extra_files': False}
filename = 'OpenCloudOS-9.0-minimal-x86_64.iso'
iso_dir = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/compose/Minimal/x86_64/iso'
iso_path = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/compose/Minimal/x86_64/iso/OpenCloudOS-9.0-minimal-x86_64.iso'
msg = 'Creating ISO (arch: x86_64, variant: Minimal): OpenCloudOS-9.0-minimal-x86_64.iso'
self =
self._args =
self._daemonic = False
self._ident = 140244762744576
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-151'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140244762744576
self.kill = True
self.name = 'Thread-151'
self.num = 4
self.pool =
self.running = False
variant = Variant(id="Minimal", name="Minimal", type="variant", parent=None)
volid = 'OpenCloudOS-9-0-x86_64-dvd'
Frame process in /usr/lib/python3.6/site-packages/pungi/phases/extra_isos.py at line 84
77 def process(self, item, num):
78 self.num = num
79 compose, config, variant, arch = item
80 can_fail = arch in config.get("failable_arches", [])
81 with failable(
82 compose, can_fail, variant, arch, "extra_iso", logger=self.pool._logger
83 ):
--> 84 self.worker(compose, config, variant, arch)
85
86 def worker(self, compose, config, variant, arch):
87 filename = get_filename(compose, variant, arch, config.get("filename"))
88 volid = get_volume_id(compose, variant, arch, config.get("volid", []))
89 iso_dir = compose.paths.compose.iso_dir(arch, variant)
90 iso_path = os.path.join(iso_dir, filename)
arch = 'x86_64'
can_fail = False
compose =
config = {'include_variants': ['BaseOS'], 'filename': '{release_short}-9.0-minimal-{arch}{suffix}', 'skip_src': True, 'failable_arches': ['i386', 'i686'], 'inherit_extra_files': False}
item =
num = 4
self =
self._args =
self._daemonic = False
self._ident = 140244762744576
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-151'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140244762744576
self.kill = True
self.name = 'Thread-151'
self.num = 4
self.pool =
self.running = False
variant = Variant(id="Minimal", name="Minimal", type="variant", parent=None)
Frame run in /usr/lib/python3.6/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item =
num = 4
self =
self._args =
self._daemonic = False
self._ident = 140244762744576
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-151'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140244762744576
self.kill = True
self.name = 'Thread-151'
self.num = 4
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.6/site-packages/six.py at line 693
686
687 def reraise(tp, value, tb=None):
688 try:
689 if value is None:
690 value = tp()
691 if value.__traceback__ is not tb:
692 raise value.with_traceback(tb)
--> 693 raise value
694 finally:
695 value = None
696 tb = None
697
698 else:
699 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.6/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, CalledProcessError(32, 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/
self.queue =
self.queue_get_lock =
self.queue_processed = 4
self.queue_put_lock =
self.queue_total = 4
self.threads = [, , ,
Frame stop in /usr/lib/python3.6/site-packages/pungi/phases/base.py at line 108
101 "Note that variants can be excluded in configuration file"
102 )
103
104 def stop(self):
105 if self.finished:
106 return
107 if hasattr(self, "pool"):
--> 108 self.pool.stop()
109 self.finished = True
110 self.compose.log_info("[DONE ] %s" % self.msg)
111 if self.used_patterns is not None:
112 # We only want to report this if the config was actually queried.
113 self.report_unused_patterns()
114 self.compose.notifier.send("phase-stop", phase_name=self.name)
self =
self._skipped = False
self.compose =
self.finished = False
self.logger =
self.msg = '---------- PHASE: EXTRA_ISOS ----------'
self.name = 'extra_isos'
self.pool =
self.used_patterns = None
Frame process in /usr/lib/python3.6/site-packages/pungi/phases/weaver.py at line 79
72 self.pool.queue_total,
73 phases_names,
74 )
75 self.pool.log_info("[BEGIN] %s" % (msg,))
76
77 for phase in pipeline:
78 phase.start()
--> 79 phase.stop()
80
81 self.pool.log_info("[DONE ] %s" % (msg,))
item = []
msg = 'Running pipeline (2/6). Phases: extra_isos'
num = 2
phase =
phases_names = 'extra_isos'
pipeline = []
self =
self._args =
self._daemonic = False
self._ident = 140246503868160
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-143'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140246503868160
self.kill = True
self.name = 'Thread-143'
self.pool =
self.running = False
Frame run in /usr/lib/python3.6/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item = []
num = 2
self =
self._args =
self._daemonic = False
self._ident = 140246503868160
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-143'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140246503868160
self.kill = True
self.name = 'Thread-143'
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.6/site-packages/six.py at line 693
686
687 def reraise(tp, value, tb=None):
688 try:
689 if value is None:
690 value = tp()
691 if value.__traceback__ is not tb:
692 raise value.with_traceback(tb)
--> 693 raise value
694 finally:
695 value = None
696 tb = None
697
698 else:
699 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.6/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, CalledProcessError(32, 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/
self.queue =
self.queue_get_lock =
self.queue_processed = 6
self.queue_put_lock =
self.queue_total = 6
self.threads = [, , ,
Frame stop in /usr/lib/python3.6/site-packages/pungi/phases/weaver.py at line 57
50
51 self.pool.start()
52
53 def stop(self):
54 if self.finished:
55 return
56 if hasattr(self, "pool"):
--> 57 self.pool.stop()
58 self.finished = True
59 self.compose.log_info("[DONE ] %s" % self.msg)
60
61
62 class PipelineThread(WorkerThread):
63 """
self =
self._phases_schema =
self.compose =
self.finished = False
self.msg = '---------- PHASE: WEAVER ----------'
self.name = 'weaver'
self.pool =
Frame process in /usr/lib/python3.6/site-packages/pungi/phases/weaver.py at line 79
72 self.pool.queue_total,
73 phases_names,
74 )
75 self.pool.log_info("[BEGIN] %s" % (msg,))
76
77 for phase in pipeline:
78 phase.start()
--> 79 phase.stop()
80
81 self.pool.log_info("[DONE ] %s" % (msg,))
item = [, ]
msg = 'Running pipeline (1/3). Phases: weaver, weaver'
num = 1
phase =
phases_names = 'weaver, weaver'
pipeline = [, ]
self =
self._args =
self._daemonic = False
self._ident = 140245949462272
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-139'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140245949462272
self.kill = True
self.name = 'Thread-139'
self.pool =
self.running = False
Frame run in /usr/lib/python3.6/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item = [, ]
num = 1
self =
self._args =
self._daemonic = False
self._ident = 140245949462272
self._initialized = True
self._is_stopped = True
self._kwargs = {}
self._name = 'Thread-139'
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='UTF-8'>
self._target = None
self._tstate_lock = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140245949462272
self.kill = True
self.name = 'Thread-139'
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.6/site-packages/six.py at line 693
686
687 def reraise(tp, value, tb=None):
688 try:
689 if value is None:
690 value = tp()
691 if value.__traceback__ is not tb:
692 raise value.with_traceback(tb)
--> 693 raise value
694 finally:
695 value = None
696 tb = None
697
698 else:
699 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.6/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, CalledProcessError(32, 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/
self.queue =
self.queue_get_lock =
self.queue_processed = 3
self.queue_put_lock =
self.queue_total = 3
self.threads = [, , ]
Frame stop in /usr/lib/python3.6/site-packages/pungi/phases/weaver.py at line 57
50
51 self.pool.start()
52
53 def stop(self):
54 if self.finished:
55 return
56 if hasattr(self, "pool"):
--> 57 self.pool.stop()
58 self.finished = True
59 self.compose.log_info("[DONE ] %s" % self.msg)
60
61
62 class PipelineThread(WorkerThread):
63 """
self =
self._phases_schema =
self.compose =
self.finished = False
self.msg = '---------- PHASE: WEAVER ----------'
self.name = 'weaver'
self.pool =
Frame run_compose in /usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py at line 533
526 (compose_images_phase, post_image_phase),
527 osbs_phase,
528 repoclosure_phase,
529 )
530 extra_phase = pungi.phases.WeaverPhase(compose, extra_phase_schema)
531
532 extra_phase.start()
--> 533 extra_phase.stop()
534
535 pungi.metadata.write_compose_info(compose)
536 if not (
537 buildinstall_phase.skip()
538 and ostree_installer_phase.skip()
539 and createiso_phase.skip()
arch = 'src'
buildinstall_phase =
compose =
compose_images_phase =
compose_images_schema =
config_copy_path = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/logs/global/config-copy'
config_dump_full = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/logs/global/config-dump.global.log'
config_file = '/root/opencloudos/compose/pungi-opencloudos/opencloudos/override.conf'
create_latest_link = True
createiso_phase =
createrepo_phase =
errors = []
essentials_phase =
essentials_schema =
extra_isos_phase =
extra_phase =
extra_phase_schema =
extrafiles_phase =
f = <_io.TextIOWrapper name='/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/logs/global/config-dump.global.log' mode='w' encoding='UTF-8'>
gather_phase =
image_build_phase =
image_checksum_phase =
image_container_phase =
init_phase =
latest_link_components = -1
latest_link_status = None
liveimages_phase =
livemedia_phase =
osbs_phase =
osbuild_phase =
ostree_installer_phase =
ostree_phase =
phase =
pkgset_phase =
post_image_phase =
pungi =
repoclosure_phase =
test_phase =
timestamp = '1703042811.715640'
variant = Variant(id="Minimal", name="Minimal", type="variant", parent=None)
Frame main in /usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py at line 337
330 notifier.compose = compose
331 COMPOSE = compose
332 try:
333 run_compose(
334 compose,
335 create_latest_link=create_latest_link,
336 latest_link_status=latest_link_status,
--> 337 latest_link_components=latest_link_components,
338 )
339 except UnsignedPackagesError:
340 # There was an unsigned package somewhere. It is not safe to reuse any
341 # package set from this compose (since we could leak the unsigned
342 # package). Let's make sure all reuse files are deleted.
343 for fp in glob.glob(compose.paths.work.pkgset_reuse_file("*")):
Compose =
PHASES_NAMES_MODIFIED = ['buildinstall', 'createiso', 'createrepo', 'extra_files', 'extra_isos', 'gather', 'image_build', 'image_checksum', 'image_container', 'init', 'live_images', 'live_media', 'osbs', 'osbuild', 'ostree',
abort = .abort at 0x7f8db0a5aea0>
compose =
compose_dir = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1'
compose_type = 'production'
conf = {'RELEASE_NAME': 'OpenCloudOS', 'RELEASE_SHORT': 'OpenCloudOS', 'RELEASE_VERSION': '9.0', 'PKGSET_KOJI_TAG': 'dist-oc9-compose', 'RUNROOT_CHANNEL': 'image', 'RUNROOT_TAG': 'dist-oc9-build', 'RELEASE_V
create_latest_link = True
errors = []
fail_to_start = .fail_to_start at 0x7f8db0a5ae18>
group =
kobo =
latest_link_components = -1
latest_link_status = None
logger =
notifier =
opts = Namespace(compose_dir=None, compose_type='production', config='/root/opencloudos/compose/pungi-opencloudos/oc.conf', just_phase=[], koji_event=None, label='RC-9.0', latest_link_components=-1, latest_l
parser = ArgumentParser(prog='pungi-koji', usage=None, description=None, formatter_class=, conflict_handler='error', add_help=True)
productmd =
pungi =
warning = 'WARNING: Unrecognized config option: GATHER_PREPOPULATE_COMMAND.'
warnings = ["WARNING: Config option runroot was removed and has no effect; remove it. Please specify 'runroot_method' if you want to enable runroot, otherwise run things locally.", 'WARNING: Config option bootab
Frame cli_main in /usr/lib/python3.6/site-packages/pungi/scripts/pungi_koji.py at line 637
630
631
632 def cli_main():
633 signal.signal(signal.SIGINT, sigterm_handler)
634 signal.signal(signal.SIGTERM, sigterm_handler)
635
636 try:
--> 637 main()
638 except (Exception, KeyboardInterrupt) as ex:
639 if COMPOSE:
640 tb_path = COMPOSE.paths.log.log_file("global", "traceback")
641 COMPOSE.log_error("Compose run failed: %s" % ex)
642 COMPOSE.log_error("Extended traceback in: %s" % tb_path)
643 COMPOSE.log_critical("Compose failed: %s" % COMPOSE.topdir)
ex = CalledProcessError(32, 'sudo mount -o loop /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/buildinstall/Minimal/images/boot.iso /mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/work/x86_64/bu
f = <_io.BufferedWriter name='/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/logs/global/traceback.global.log'>
kobo =
tb_path = '/mnt/koji/compose/9/OpenCloudOS-9.0-20231220.1/logs/global/traceback.global.log'