Bug 2169682
| Summary: | [Sat6.12/Installer/Bug] ansible collection sat6 operations created file rhcd.service.d/proxy.conf has permissions warning | ||
|---|---|---|---|
| Product: | Red Hat Satellite | Reporter: | Puja Singh <pujsingh> |
| Component: | Ansible Collection | Assignee: | Evgeni Golov <egolov> |
| Status: | CLOSED ERRATA | QA Contact: | Griffin Sullivan <gsulliva> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 6.12.0 | CC: | ahumbe, egolov, ehelms, jpathan, pcreech, peter.vreman |
| Target Milestone: | 6.14.0 | Keywords: | Patch, Triaged |
| Target Release: | Unused | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | ansible-collection-redhat-satellite_operations-2.0.0 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2023-11-08 14:18:30 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
Verified on 6.14 snap 2 No warning messages when configuring cloud connector. Steps: 1) Setup and run "configure cloud connector" on Configure > Inventory Upload Results: No warning messages for /etc/systemd/system/rhcd.service.d/proxy.conf in production.log Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: Satellite 6.14 security and bug fix update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2023:6818 |
Description of problem: The following warning is seen in the syslog for a file created by Satellite installer: ~~~ Jan 30 00:46:16 li-lc-2750 systemd[1]: Configuration file /etc/systemd/system/rhcd.service.d/proxy.conf is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. ~~~ Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. Run "satellite-installer" on satellite 2. Observer below messages ~~~ [cb/Azure] root@li-lc-2750:/usr/share# tail -n2 /var/log/messages Feb 2 15:39:33 li-lc-2750 systemd[1]: Configuration file /etc/systemd/system/rhcd.service.d/proxy.conf is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. Feb 2 15:39:33 li-lc-2750 systemd[1]: Configuration file /etc/systemd/system/rhcd.service.d/proxy.conf is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. [cb/Azure] root@li-lc-2750:/usr/share# ~~~ Actual results: Permission Warning message gets create for file "rhcd.service.d/proxy.conf" Expected results: Remove unnecessary warning message for file "rhcd.service.d/proxy.conf" created by satellite installer Additional info: Patch is available. Fix for Satellite installer: ~~~ [cb/Azure] root@li-lc-2750:/usr/share# rpm -qf ansible/collections/ansible_collections/redhat/satellite_operations/roles/cloud_connector/tasks/http_proxy.yml ansible-collection-redhat-satellite_operations-1.2.3-1.el8sat.noarch [cb/Azure] root@li-lc-2750:/usr/share# diff -u ansible/collections/ansible_collections/redhat/satellite_operations/roles/cloud_connector/tasks/http_proxy.yml.230202-1 ansible/collections/ansible_collections/redhat/satellite_operations/roles/cloud_connector/tasks/http_proxy.yml --- ansible/collections/ansible_collections/redhat/satellite_operations/roles/cloud_connector/tasks/http_proxy.yml.230202-1 2022-06-15 14:17:06.000000000 +0000 +++ ansible/collections/ansible_collections/redhat/satellite_operations/roles/cloud_connector/tasks/http_proxy.yml 2023-02-02 15:38:31.819923097 +0000 @@ -13,6 +13,6 @@ dest: /etc/systemd/system/rhcd.service.d/proxy.conf owner: root group: root - mode: 0640 + mode: 0644 notify: - Restart rhcd [cb/Azure] root@li-lc-2750:/usr/share# ~~~