Hi
On 19.07.2012, at 11:52, Andrew wrote:
I am looking the way to apply only few selected modules to the puppet
node instead of all catalogue. I need this step to be done as the part
of the maintenance.
If you are using modules you can use tags.
Each module is also a tag.
Example you have three modules:
<moduledir>/apache/manifests...
<moduledir>/mysql/manifests...
<moduledir>/base/manifests...
you can use tags to run one or some modules only:
puppet agent --test --tags=apache
puppet agent --test --tags=apache,mysql
hth,
Martin