Defined Type: python::plugin
- Defined in:
- manifests/plugin.pp
Overview
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/plugin.pp', line 13
define python::plugin (
$ensure,
$source,
) {
require python
repository { "${python::pyenv::prefix}/plugins/${name}":
ensure => $ensure,
force => true,
source => $source,
user => $python::pyenv::user,
}
}
|