Skip to content

Commit

Permalink
Add structure options to upload command
Browse files Browse the repository at this point in the history
  • Loading branch information
quba42 committed Nov 20, 2024
1 parent 639802f commit 9977703
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pulpcore/cli/deb/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,20 @@ def content() -> None:
help=_("An DEB binary"),
allowed_with_contexts=(PulpDebPackageContext,),
)
@pulp_option(
"--distribution",
type=str,
required=False,
help=_("The APT repo distribution the package should be uploaded to"),
allowed_with_contexts=(PulpDebPackageContext,),
)
@pulp_option(
"--component",
type=str,
required=False,
help=_("The APT repo component the package should be uploaded to"),
allowed_with_contexts=(PulpDebPackageContext,),
)
@repository_option
@pass_entity_context
@pass_pulp_context
Expand Down

0 comments on commit 9977703

Please sign in to comment.