Skip to content

Instantly share code, notes, and snippets.

@dmateos
Created August 17, 2017 06:23
Show Gist options
  • Save dmateos/dbb5a35f5fc339e27eb97938323d86f8 to your computer and use it in GitHub Desktop.
Save dmateos/dbb5a35f5fc339e27eb97938323d86f8 to your computer and use it in GitHub Desktop.
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