Created
May 16, 2012 09:06
-
-
Save raphink/2708910 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class foo::config { | |
resource {'baz': | |
param => somevalue | |
} | |
} | |
class foo::master { | |
include foo::config | |
} | |
class bar::config inherits foo::config { | |
Resource['baz'] { | |
param => newvalue, | |
} | |
} | |
class bar::master inherits foo::master { | |
include bar::config | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment