Puppet Class: psick::python::fabric
- Defined in:
- manifests/python/fabric.pp
Overview
This class installs fabric
3 4 5 6 7 8 9 |
# File 'manifests/python/fabric.pp', line 3
class psick::python::fabric (
$ensure = 'present',
) {
package { 'fabric':
ensure => $ensure,
}
}
|