module-inifile/tests/ini_subsetting.pp

19 lines
522 B
ObjectPascal
Raw Normal View History

2013-04-10 14:57:39 +02:00
ini_subsetting { 'sample subsetting':
ensure => present,
section => '',
key_val_separator => '=',
2013-04-10 14:57:39 +02:00
path => '/etc/default/pe-puppetdb',
setting => 'JAVA_ARGS',
subsetting => '-Xmx',
value => '512m',
}
2013-04-10 14:57:39 +02:00
ini_subsetting { 'sample subsetting2':
ensure => absent,
section => '',
key_val_separator => '=',
2013-04-10 14:57:39 +02:00
path => '/etc/default/pe-puppetdb',
setting => 'JAVA_ARGS',
subsetting => '-Xms',
}