Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite 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 "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. 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 "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-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.
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#
~~~
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# ~~~