Created
August 17, 2017 06:23
-
-
Save dmateos/dbb5a35f5fc339e27eb97938323d86f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class device { | |
class { "ntp" : | |
service_ensure => "running", | |
package_ensure => "present", | |
servers => ["time.iinet.net.au"] | |
} | |
class { "python" : | |
#this should be 2.7 explicilty but breaks on my test ubuntu 16.04 vm... | |
version => "system", | |
pip => "present", | |
virtualenv => "present" | |
} | |
python::pip { "awsiotpythonsdk" : | |
pkgname => "awsiotpythonsdk", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment