diff --git a/manifests/4-order-example.pp b/manifests/4-order-example.pp new file mode 100644 index 0000000..35b0e51 --- /dev/null +++ b/manifests/4-order-example.pp @@ -0,0 +1,7 @@ +notify { 'First': } +notify { 'Second': } +notify { 'Third': } +notify { 'Fourth': } +notify { 'Fifth': } +notify { 'Sixth': } +notify { 'Seventh': } diff --git a/manifests/5-ordered-example.pp b/manifests/5-ordered-example.pp new file mode 100644 index 0000000..bd0cf84 --- /dev/null +++ b/manifests/5-ordered-example.pp @@ -0,0 +1,19 @@ +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'], +}