Skip to content

Instantly share code, notes, and snippets.

@raphink
Created May 16, 2012 09:06
Show Gist options
  • Save raphink/2708910 to your computer and use it in GitHub Desktop.
Save raphink/2708910 to your computer and use it in GitHub Desktop.
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