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.
Description of problem:
Apparently, even with all pcp packages installed, file /etc/pcp/nssdb is missing, which - among others I guess - spoils output of each test case in the test suite. For example TC 574:
--- /var/lib/pcp/testsuite/574.out 2016-07-07 03:02:16.000000000 -0400
+++ /var/lib/pcp/testsuite/574.out.bad 2016-07-26 04:31:37.324775375 -0400
@@ -107,3 +107,6 @@
inst [2 or "blue"] value NUMBER
Unexpected failure for 0 of N PMAPI operations
+
+*** Failed permissions/ownership checks ***
+Error: /etc/pcp/nssdb: not found, should have been installed from GNUmakefile
I've found commit adding line to GNUmakefile to install nssdb, but it seems to me this commit came before 3.11.3 release.
commit 9292a178d71447dbcb1bd006ad8d4acacd57e1f6
Author: Martins Innus <minnus>
Date: Tue May 17 17:43:49 2016 +0000
Add a missing file from last commit
diff --git a/GNUmakefile b/GNUmakefile
index 3a55f5e..f76b53d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -94,6 +94,7 @@ endif
$(INSTALL) -m 755 -d $(PCP_VAR_DIR)/config/pmlogconf
$(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_VAR_DIR)/config/pmda
$(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_LOG_DIR)
+ $(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_NSSDB_DIR)
$(INSTALL) -m 755 -d $(PCP_VAR_DIR)/pmns
$(INSTALL) -m 755 -d $(PCP_PMDAS_DIR)
$(INSTALL) -m 755 -d $(PCP_DOC_DIR)
Version-Release number of selected component (if applicable):
pcp-3.11.3-2.el7
I've never seen this before, pcp-3.11.3-1.el7 results were not spoiled by this, so I'd say it's been pulled in by the changes brought for this build.
How reproducible:
Steps to Reproduce:
1. simply run ./check -s -g sanity (or even the single test case, output of all was spoiled so it should work for a single one as well)
2.
3.
Actual results:
Expected results:
Additional info:
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, 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://rhn.redhat.com/errata/RHBA-2016-2344.html
Description of problem: Apparently, even with all pcp packages installed, file /etc/pcp/nssdb is missing, which - among others I guess - spoils output of each test case in the test suite. For example TC 574: --- /var/lib/pcp/testsuite/574.out 2016-07-07 03:02:16.000000000 -0400 +++ /var/lib/pcp/testsuite/574.out.bad 2016-07-26 04:31:37.324775375 -0400 @@ -107,3 +107,6 @@ inst [2 or "blue"] value NUMBER Unexpected failure for 0 of N PMAPI operations + +*** Failed permissions/ownership checks *** +Error: /etc/pcp/nssdb: not found, should have been installed from GNUmakefile I've found commit adding line to GNUmakefile to install nssdb, but it seems to me this commit came before 3.11.3 release. commit 9292a178d71447dbcb1bd006ad8d4acacd57e1f6 Author: Martins Innus <minnus> Date: Tue May 17 17:43:49 2016 +0000 Add a missing file from last commit diff --git a/GNUmakefile b/GNUmakefile index 3a55f5e..f76b53d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -94,6 +94,7 @@ endif $(INSTALL) -m 755 -d $(PCP_VAR_DIR)/config/pmlogconf $(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_VAR_DIR)/config/pmda $(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_LOG_DIR) + $(INSTALL) -m 775 -o $(PCP_USER) -g $(PCP_GROUP) -d $(PCP_NSSDB_DIR) $(INSTALL) -m 755 -d $(PCP_VAR_DIR)/pmns $(INSTALL) -m 755 -d $(PCP_PMDAS_DIR) $(INSTALL) -m 755 -d $(PCP_DOC_DIR) Version-Release number of selected component (if applicable): pcp-3.11.3-2.el7 I've never seen this before, pcp-3.11.3-1.el7 results were not spoiled by this, so I'd say it's been pulled in by the changes brought for this build. How reproducible: Steps to Reproduce: 1. simply run ./check -s -g sanity (or even the single test case, output of all was spoiled so it should work for a single one as well) 2. 3. Actual results: Expected results: Additional info: