mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 01:17:42 -04:00
13 lines
280 B
Puppet
13 lines
280 B
Puppet
# the base profile should include component modules that will be on all nodes
|
|
class profile::base {
|
|
$pip_packages = [
|
|
'psutil',
|
|
'powerline-status',
|
|
]
|
|
|
|
package { $pip_packages:
|
|
ensure => 'latest',
|
|
provider => 'pip',
|
|
require => Package['python'],
|
|
}
|
|
}
|