Skip to content

Instantly share code, notes, and snippets.

@duritong
Created June 23, 2009 09:51
Show Gist options
  • Save duritong/134458 to your computer and use it in GitHub Desktop.
Save duritong/134458 to your computer and use it in GitHub Desktop.
$ cat foo.pp
class a::b {
include ::b
}
class ab::b {
include b
}
class b {
notice("works")
}
include a::b
include ab::b
$ puppet foo.pp
notice: Scope(Class[b]): works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment