Puppet Class: profile::analytics::conda_analytics

Defined in:
modules/profile/manifests/analytics/conda_analytics.pp

Overview

Class: profile::analytics::conda_analytics

Includes the conda-analytics .deb package

remove_conda_env_pkgs_dir

This option is used to delete the conda pkgs directory when installing the deb package. This pkgs dir is used when cloning the environment. So, It's only used on statboxes and launchers. Default: true

Parameters:

  • ensure (Any) (defaults to: lookup('profile::analytics::conda_analytics::ensure', {'default_value' => 'present'}))
  • remove_conda_env_pkgs_dir (Boolean) (defaults to: lookup('profile::analytics::conda_analytics::remove_conda_env_pkgs_dir', {'default_value' => true}))


12
13
14
15
16
17
18
19
20
# File 'modules/profile/manifests/analytics/conda_analytics.pp', line 12

class profile::analytics::conda_analytics(
    $ensure                          = lookup('profile::analytics::conda_analytics::ensure', {'default_value' => 'present'}),
    Boolean $remove_conda_env_pkgs_dir = lookup('profile::analytics::conda_analytics::remove_conda_env_pkgs_dir', {'default_value' => true})
) {
    class { 'conda_analytics':
        ensure                    => $ensure,
        remove_conda_env_pkgs_dir => $remove_conda_env_pkgs_dir
    }
}