mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
27 lines
245 B
Puppet
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"]
|
|
}
|