File: fragment.pp

package info (click to toggle)
puppet-module-puppetlabs-concat 7.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 532 kB
  • sloc: ruby: 2,584; sh: 46; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
concat { 'testconcat':
  ensure    => present,
  path      => '/tmp/concat',
  owner     => 'root',
  group     => 'root',
  mode      => '0664',
  show_diff => true,
}

concat::fragment { '1':
  target  => 'testconcat',
  content => '1',
  order   => '01',
}

concat::fragment { '2':
  target  => 'testconcat',
  content => '2',
  order   => '02',
}