Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
This bug was initially created as a copy of Bug #2064815
I am copying this bug because:
we need to have 8.8 and 9.2 in par
Description of problem:
Artificial but very evident reproducer:
sos report --clean --keywords tmp -o system --batch
fails with:
[cleaner] Obfuscating ui.log
[cleaner] Obfuscating manifest.json
Creating compressed archive...
No such file or directory while finalizing archive /var/tmp/sos.0twrlqpo/sosreport-pmoravec-rhel8-2022-03-16-bbwngfg
Creating archive tarball failed.
Traceback (most recent call last):
File "bin/sos", line 22, in <module>
sos.execute()
File "/root/sos-main/sos/__init__.py", line 188, in execute
self._component.execute()
File "/root/sos-main/sos/report/__init__.py", line 1600, in execute
return self.final_work()
File "/root/sos-main/sos/report/__init__.py", line 1497, in final_work
archivestat, map_file=map_file)
UnboundLocalError: local variable 'archivestat' referenced before assignment
The reason is that an attempt to rename the directory (https://github.com/sosreport/sos/blob/main/sos/archive.py#L554) attempts to rename also *path* to it:
[cleaner] Could not write private map file: [Errno 2] No such file or directory: '/var/obfuscatedword3/host10report-host0-2022-03-16-guuqlpu-private_map'
[cleaner] Wrote mapping to /etc/sos/cleaner/default_mapping
[cleaner] Obfuscating sos.log
[cleaner] Obfuscating ui.log
[cleaner] Obfuscating manifest.json
Creating compressed archive...
---->> os.rename(/var/tmp/sos.ifuhcmbt/sosreport-pmoravec-rhel8-2022-03-16-guuqlpu, /var/obfuscatedword3/host10.ifuhcmbt/host10report-host0-2022-03-16-guuqlpu)
this fails.
Anyway, we have to fix also the "Could not write private map file" issue on the same topic.
Version-Release number of selected component (if applicable):
sos-4.2-15
How reproducible:
100%
Steps to Reproduce:
1. sos report --clean --keywords tmp -o system --batch
Actual results:
Above backtrace and no private map file (on 2nd run).
Expected results:
No backtrace, private map file created.
Additional info: