mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
12 lines
245 B
Puppet
12 lines
245 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',
|
|
}
|
|
}
|