Hi,
I would like to known how can I make something like
file{ }
-> include ::other_module
(file can be any puppet ressource) other than put some require inside the
::other_module
include '::other_module'
my_resource { 'foo':
# ...
before => Class['::other_module']
}
include '::other_module'
my_resource { 'foo':
# ...
}
My_resource['foo'] -> Class['::other_module']include '::other_module'
my_resource { 'foo':
# ...
}
->
Class['::other_module']