Puppet Class: superset::python

Defined in:
manifests/python.pp

Summary

Overview

Installs and configures the Python



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/python.pp', line 7

class superset::python {
  assert_private()

  if $superset::manage_python {
    class { 'python' :
      ensure  => 'present',
      version => $superset::python_version,
      pip     => $superset::python_pip,
      dev     => $superset::python_dev,
      venv    => $superset::python_venv,
    }
  }
}