File: complex.pp

package info (click to toggle)
ruby-rspec-puppet 4.0.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,444 kB
  • sloc: ruby: 6,377; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class relationships::complex {
  notify { 'foo':
    before => Notify['bar'],
  }

  notify { 'bar':
    before => Notify['baz'],
  }

  notify { 'baz':
  }

  Notify['baz'] <- Notify['foo']
}