1
0
Fork 0
puppet-walkthru/manifests/5-ordered-example.pp

20 lines
326 B
ObjectPascal
Raw Normal View History

2013-12-02 20:50:34 -05:00
notify { 'First': }
notify { 'Second':
require => Notify['First'],
}
notify { 'Third':
require => Notify['Second'],
}
notify { 'Fourth':
require => Notify['Third'],
}
notify { 'Fifth':
require => Notify['Fourth'],
}
notify { 'Sixth':
require => Notify['Fifth'],
}
notify { 'Seventh':
require => Notify['Sixth'],
}