Skip to content

Instantly share code, notes, and snippets.

@jordansissel
Created December 2, 2010 09:39
Show Gist options
  • Save jordansissel/725041 to your computer and use it in GitHub Desktop.
Save jordansissel/725041 to your computer and use it in GitHub Desktop.
My site.pp
node default {
tag("deployment::$deployment")
include truth::enforcer
case $operatingsystem {
"Ubuntu": { include os::ubuntu }
default: { err("Unsupported operatingsystem: '$operatingsystem'") }
}
exec {
"apt refresh":
command => "apt-get -qq update";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment