Skip to content

Instantly share code, notes, and snippets.

@kornypoet
Created July 24, 2014 19:50
Show Gist options
  • Save kornypoet/d8ce95a97ec50bde8427 to your computer and use it in GitHub Desktop.
Save kornypoet/d8ce95a97ec50bde8427 to your computer and use it in GitHub Desktop.
# init.pp
class foo(
$var1 = undef,
$var2 = undef,
$var3 = undef
) {
include foo::prepare
include foo::install
Class['foo::prepare'] -> Class['foo::install']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment