Files
linguist/samples/Puppet/stages-example.pp
2014-06-10 15:40:26 +02:00

27 lines
245 B
Puppet

class foo {
notify {
"foo": ;
}
}
class bar {
notify {
"bar": ;
}
}
node default {
stage {
"one": ;
"two": ;
}
class {
"foo": stage => "one";
"bar": stage => "two";
}
Stage["one"] -> Stage["two"]
}