summaryrefslogtreecommitdiff
path: root/tests/ini_subsetting.pp
blob: d6f52e7f20ea91f08b88fec118aa308ce71ee526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ini_subsetting {'sample subsetting':
  ensure  => present,
  section => '',
  key_val_separator => '=',
  path => '/etc/default/pe-puppetdb',
  setting => 'JAVA_ARGS',
  subsetting => '-Xmx',
  value   => '512m',
}

ini_subsetting {'sample subsetting2':
  ensure  => absent,
  section => '',
  key_val_separator => '=',
  path => '/etc/default/pe-puppetdb',
  setting => 'JAVA_ARGS',
  subsetting => '-Xms',
}