Displaying 1 result from an estimated 1 matches for "stageclass".
Did you mean:
storageclass
2010 Sep 02
1
Using stages in puppet
...g stage classes in 2.6.0?
Using Jeffs eariler post I easily make a stage script do what I need,
the problem is if you import it in site.pp it runs for every node in
the environment, it would seem becuase it is outside any class other
than it''s special stage class . Any attempt to move the stageclass
structure inside a parent class to limit its execution seems to result
in script errors; As an example:
site.pp
----------
import "classes/works.pp"
import "classes/parent.pp"
node "my.domain.com {
include parent
}
works.pp
-------------
stage { "pre": befor...