Created
December 2, 2010 09:39
-
-
Save jordansissel/725041 to your computer and use it in GitHub Desktop.
My site.pp
This file contains 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
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