diff --git a/CHANGES/232.feature b/CHANGES/232.feature new file mode 100644 index 0000000..d243089 --- /dev/null +++ b/CHANGES/232.feature @@ -0,0 +1 @@ +Add content-guard as an option to distribution creation and updation diff --git a/pulpcore/cli/deb/distribution.py b/pulpcore/cli/deb/distribution.py index 45e3744..a2f9f33 100644 --- a/pulpcore/cli/deb/distribution.py +++ b/pulpcore/cli/deb/distribution.py @@ -5,6 +5,7 @@ PulpCLIContext, base_path_contains_option, base_path_option, + content_guard_option, create_command, destroy_command, href_option, @@ -69,6 +70,7 @@ def distribution(ctx: click.Context, pulp_ctx: PulpCLIContext, /, distribution_t click.option("--base-path"), click.option("--publication", help=_("Publication to be served.")), repository_option, + content_guard_option, checkpoint_option, ] create_options = update_options + [click.option("--name", required=True)]