We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0917f2 commit bb1130eCopy full SHA for bb1130e
cbcollect_info
@@ -2238,6 +2238,12 @@ def main():
2238
runner.run_tasks(make_product_task(guts, guts_initargs_path,
2239
memcached_password, options))
2240
2241
+ for f in glob.glob(os.path.join(guts.get("path_config_datadir"),
2242
+ "config", "certs", "*")):
2243
+ base = os.path.basename(f)
2244
+ if base not in ["pkey.pem", "client_pkey.pem"]:
2245
+ runner.collect_file(f, f"certs/{base}")
2246
+
2247
# Collect breakpad crash dumps.
2248
if options.bypass_sensitive_data:
2249
log("Bypassing Sensitive Data: Breakpad crash dumps")
0 commit comments