Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a docstring for copy-repo [RHELDST-28512] #339

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/pubtools/_pulp/tasks/copy_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ def __call__(self, /, *args, **keywords):


class CopyRepo(CollectorService, PulpClientService, PulpRepositoryOperation):
"""
Copy content from one repository to another.

This command copies content from one repository to another, for multiple provided `source,destination` pairs.
Copied content may optionally be filtered on content types.
If the user provides a non existing repo, the command fails.
"""

@property
def content_type_criteria(self):
# Only return non-None if there were really any types given.
Expand Down
Loading