The wonderful thing about puppets, is that puppets are wonderful things

This commit is contained in:
Barak Michener 2013-04-22 13:25:38 -04:00
parent dd0d7f67a0
commit 4d128d6c92
8 changed files with 41 additions and 1 deletions

15
.puppet/python.pp Normal file
View file

@ -0,0 +1,15 @@
$packages = [ "python-pip"]
package {
$packages:
ensure => "installed"
}
$pip_packages = ["flake8", "tornado"]
package {
$pip_packages :
ensure => "installed",
provider => "pip",
}