Puppet Class: psick::python::pip

Defined in:
manifests/python/pip.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')


2
3
4
5
6
7
8
# File 'manifests/python/pip.pp', line 2

class psick::python::pip (
  $ensure = 'present',
) {
  tp::install { 'python-pip':
    ensure => $ensure,
  }
}