hi all,
How are you? I have a question on the class dependencies.
This is my init.pp script looks like
class mapr {
Class['mapr::install'] -> Class["mapr::config"]
include mapr::install,
mapr::config
}
In my mapr::install class i have another few lines of includes statement to install different packages. Same goes to mapr::config. My Class dependency is not working at all when i put
Class['mapr::install'] -> Class["mapr::config"]
It executed config first before install, which is the one that i wish to do.
can anyone educate me on this? thanks!