Skip to content

Commit

Permalink
Refs #37062 - Use pulpcore::analytics instead of pulpcore::telemetry
Browse files Browse the repository at this point in the history
Pulp's TELEMETRY setting has been renamed to ANALYTICS. The original
setting name TELEMETRY has been deprecated in favor of the new name.
  • Loading branch information
wbclark committed Jan 18, 2024
1 parent 64f8569 commit e1d9935
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
#
# $pulpcore_additional_export_paths:: Additional allowed paths that Pulpcore can use for content exports
#
# $pulpcore_telemetry:: Enable upload of anonymous usage data to https://analytics.pulpproject.org/
# $pulpcore_analytics:: Enable upload of anonymous usage data to https://analytics.pulpproject.org/
#
# $pulpcore_hide_guarded_distributions:: Hide distributions that are protected by a content guard from the default listing
#
Expand Down Expand Up @@ -113,7 +113,7 @@
Optional[Variant[Integer[1], Enum['None']]] $pulpcore_cache_expires_ttl = undef,
Variant[Stdlib::Absolutepath, Array[Stdlib::Absolutepath]] $pulpcore_additional_import_paths = [],
Variant[Stdlib::Absolutepath, Array[Stdlib::Absolutepath]] $pulpcore_additional_export_paths = [],
Boolean $pulpcore_telemetry = false,
Boolean $pulpcore_analytics = false,
Boolean $pulpcore_hide_guarded_distributions = true,
Optional[Integer[1,100]] $pulpcore_import_workers_percent = undef,
) inherits foreman_proxy_content::params {
Expand Down Expand Up @@ -258,7 +258,7 @@
cache_enabled => $pulpcore_cache_enabled,
cache_expires_ttl => $pulpcore_cache_expires_ttl,
before => Class['foreman_proxy::plugin::pulp'],
telemetry => $pulpcore_telemetry,
analytics => $pulpcore_analytics,
hide_guarded_distributions => $pulpcore_hide_guarded_distributions,
import_workers_percent => $pulpcore_import_workers_percent,
}
Expand Down

0 comments on commit e1d9935

Please sign in to comment.