Displaying 1 result from an estimated 1 matches for "some_resource".
Did you mean:
iomem_resource
2009 May 18
2
How does 'require Class' differ from 'include' ?
Hi all,
Prompted by Evan''s question about requiring classes between modules; I
wonder if someone could clarify my understanding of how this works: If
I have
Class a {
some_resource{x:}
some_resource{y:}
}
Class b {
some_resource{z:
require Class[a]
}
}
Does this mean that puppet will ensure that some_resource{x:} and
some_resource{y:} have been successfully applied before it tries to
apply some_resource{z:} ? Or is it equivalent to doing "include a"
i.e. all the...