Description of problem: # pulp-admin rpm repo list --details Now above command can list all existing pulp repos details, while no way to get details for only one specific pulp repo. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
+1 to this RFE. I frequently need to review the detailed configuration for an individual repo (either so I can determine if something needs to be changed, or to configure a new repo with similar settings), and it is tedious to have to wade through the details for all repos (including the SSL certs and GPG keys!) when I am only interested in one.
+1! (as Christina said)
Just to say, I currently work around this by using sed to remove unwanted repos. eg. pulp-admin repo list --details | sed -n '/repo-name/,/^$/p' -n turns off printing by default /repo-name/ <- what I'm looking for /,/ match between /^$/ <- blank line /p <- print (since -n turned it off) Not a solution, just a work around.
https://github.com/pulp/pulp/pull/1377
Moved to https://pulp.plan.io/issues/225