Merge pull request #228 from kbarber/ticket/master/pdb-2571-fix-perms-of-config-files
(PDB-2571) Ensure puppetdb.ini file has correct permissions
This commit is contained in:
commit
6b26a28d22
15 changed files with 228 additions and 20 deletions
18
.gitignore
vendored
18
.gitignore
vendored
|
@ -1,9 +1,23 @@
|
||||||
|
# Final publish location for module build
|
||||||
pkg/
|
pkg/
|
||||||
|
|
||||||
|
# VIM files
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
# Mac files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Generated directory for coverage results
|
||||||
coverage/
|
coverage/
|
||||||
spec/fixtures/modules/*
|
|
||||||
|
# Gem & bundler related files we do not want persisted to the repository
|
||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
.bundle
|
.bundle
|
||||||
vendor/
|
vendor/
|
||||||
.rspec_system/
|
|
||||||
|
# Used by rake spec, for temp modules and other test requirements
|
||||||
|
spec/fixtures/
|
||||||
|
|
||||||
|
# RVM files that are specific to developers implementation
|
||||||
|
.ruby-version
|
||||||
|
.ruby-gemset
|
||||||
|
|
|
@ -135,6 +135,14 @@ class puppetdb::server (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class { 'puppetdb::server::global':
|
||||||
|
vardir => $vardir,
|
||||||
|
confdir => $confdir,
|
||||||
|
puppetdb_user => $puppetdb_user,
|
||||||
|
puppetdb_group => $puppetdb_group,
|
||||||
|
notify => Service[$puppetdb_service],
|
||||||
|
}
|
||||||
|
|
||||||
class { 'puppetdb::server::command_processing':
|
class { 'puppetdb::server::command_processing':
|
||||||
command_threads => $command_threads,
|
command_threads => $command_threads,
|
||||||
store_usage => $store_usage,
|
store_usage => $store_usage,
|
||||||
|
@ -163,6 +171,8 @@ class puppetdb::server (
|
||||||
conn_keep_alive => $conn_keep_alive,
|
conn_keep_alive => $conn_keep_alive,
|
||||||
conn_lifetime => $conn_lifetime,
|
conn_lifetime => $conn_lifetime,
|
||||||
confdir => $confdir,
|
confdir => $confdir,
|
||||||
|
puppetdb_user => $puppetdb_user,
|
||||||
|
puppetdb_group => $puppetdb_group,
|
||||||
notify => Service[$puppetdb_service],
|
notify => Service[$puppetdb_service],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,6 +191,8 @@ class puppetdb::server (
|
||||||
conn_keep_alive => $read_conn_keep_alive,
|
conn_keep_alive => $read_conn_keep_alive,
|
||||||
conn_lifetime => $read_conn_lifetime,
|
conn_lifetime => $read_conn_lifetime,
|
||||||
confdir => $confdir,
|
confdir => $confdir,
|
||||||
|
puppetdb_user => $puppetdb_user,
|
||||||
|
puppetdb_group => $puppetdb_group,
|
||||||
notify => Service[$puppetdb_service],
|
notify => Service[$puppetdb_service],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -193,7 +205,7 @@ class puppetdb::server (
|
||||||
|
|
||||||
if str2bool($ssl_deploy_certs) == true {
|
if str2bool($ssl_deploy_certs) == true {
|
||||||
validate_absolute_path($ssl_dir)
|
validate_absolute_path($ssl_dir)
|
||||||
file{
|
file {
|
||||||
$ssl_dir:
|
$ssl_dir:
|
||||||
ensure => directory,
|
ensure => directory,
|
||||||
owner => $puppetdb_user,
|
owner => $puppetdb_user,
|
||||||
|
@ -238,12 +250,16 @@ class puppetdb::server (
|
||||||
confdir => $confdir,
|
confdir => $confdir,
|
||||||
max_threads => $max_threads,
|
max_threads => $max_threads,
|
||||||
notify => Service[$puppetdb_service],
|
notify => Service[$puppetdb_service],
|
||||||
|
puppetdb_user => $puppetdb_user,
|
||||||
|
puppetdb_group => $puppetdb_group,
|
||||||
}
|
}
|
||||||
|
|
||||||
class { 'puppetdb::server::puppetdb':
|
class { 'puppetdb::server::puppetdb':
|
||||||
certificate_whitelist_file => $certificate_whitelist_file,
|
certificate_whitelist_file => $certificate_whitelist_file,
|
||||||
certificate_whitelist => $certificate_whitelist,
|
certificate_whitelist => $certificate_whitelist,
|
||||||
confdir => $confdir,
|
confdir => $confdir,
|
||||||
|
puppetdb_user => $puppetdb_user,
|
||||||
|
puppetdb_group => $puppetdb_group,
|
||||||
notify => Service[$puppetdb_service],
|
notify => Service[$puppetdb_service],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,12 +6,6 @@ class puppetdb::server::command_processing (
|
||||||
$confdir = $puppetdb::params::confdir,
|
$confdir = $puppetdb::params::confdir,
|
||||||
) inherits puppetdb::params {
|
) inherits puppetdb::params {
|
||||||
|
|
||||||
|
|
||||||
file { "${confdir}/config.ini":
|
|
||||||
ensure => 'present',
|
|
||||||
mode => '0644',
|
|
||||||
}
|
|
||||||
|
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
path => "${confdir}/config.ini",
|
path => "${confdir}/config.ini",
|
||||||
|
|
|
@ -19,6 +19,8 @@ class puppetdb::server::database (
|
||||||
$conn_keep_alive = $puppetdb::params::conn_keep_alive,
|
$conn_keep_alive = $puppetdb::params::conn_keep_alive,
|
||||||
$conn_lifetime = $puppetdb::params::conn_lifetime,
|
$conn_lifetime = $puppetdb::params::conn_lifetime,
|
||||||
$confdir = $puppetdb::params::confdir,
|
$confdir = $puppetdb::params::confdir,
|
||||||
|
$puppetdb_user = $puppetdb::params::puppetdb_user,
|
||||||
|
$puppetdb_group = $puppetdb::params::puppetdb_group,
|
||||||
) inherits puppetdb::params {
|
) inherits puppetdb::params {
|
||||||
|
|
||||||
if str2bool($database_validate) {
|
if str2bool($database_validate) {
|
||||||
|
@ -40,9 +42,17 @@ class puppetdb::server::database (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
file { "${confdir}/database.ini":
|
||||||
|
ensure => file,
|
||||||
|
owner => $puppetdb_user,
|
||||||
|
group => $puppetdb_group,
|
||||||
|
mode => '0600',
|
||||||
|
}
|
||||||
|
|
||||||
|
$file_require = File["${confdir}/database.ini"]
|
||||||
$ini_setting_require = str2bool($database_validate) ? {
|
$ini_setting_require = str2bool($database_validate) ? {
|
||||||
false => undef,
|
false => $file_require,
|
||||||
default => Class['puppetdb::server::validate_db'],
|
default => [$file_require, Class['puppetdb::server::validate_db']],
|
||||||
}
|
}
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
# PRIVATE CLASS - do not use directly
|
# PRIVATE CLASS - do not use directly
|
||||||
class puppetdb::server::global (
|
class puppetdb::server::global (
|
||||||
$vardir = $puppetdb::params::vardir,
|
$vardir = $puppetdb::params::vardir,
|
||||||
$confdir = $puppetdb::params::confdir,
|
$confdir = $puppetdb::params::confdir,
|
||||||
|
$puppetdb_user = $puppetdb::params::puppetdb_user,
|
||||||
|
$puppetdb_group = $puppetdb::params::puppetdb_group,
|
||||||
) inherits puppetdb::params {
|
) inherits puppetdb::params {
|
||||||
|
|
||||||
|
file { "${confdir}/config.ini":
|
||||||
|
ensure => file,
|
||||||
|
owner => $puppetdb_user,
|
||||||
|
group => $puppetdb_group,
|
||||||
|
mode => '0600',
|
||||||
|
}
|
||||||
|
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
path => "${confdir}/config.ini",
|
path => "${confdir}/config.ini",
|
||||||
|
|
|
@ -13,13 +13,23 @@ class puppetdb::server::jetty (
|
||||||
$ssl_protocols = $puppetdb::params::ssl_protocols,
|
$ssl_protocols = $puppetdb::params::ssl_protocols,
|
||||||
$confdir = $puppetdb::params::confdir,
|
$confdir = $puppetdb::params::confdir,
|
||||||
$max_threads = $puppetdb::params::max_threads,
|
$max_threads = $puppetdb::params::max_threads,
|
||||||
|
$puppetdb_user = $puppetdb::params::puppetdb_user,
|
||||||
|
$puppetdb_group = $puppetdb::params::puppetdb_group,
|
||||||
) inherits puppetdb::params {
|
) inherits puppetdb::params {
|
||||||
|
|
||||||
|
file { "${confdir}/jetty.ini":
|
||||||
|
ensure => file,
|
||||||
|
owner => $puppetdb_user,
|
||||||
|
group => $puppetdb_group,
|
||||||
|
mode => '0600',
|
||||||
|
}
|
||||||
|
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
path => "${confdir}/jetty.ini",
|
path => "${confdir}/jetty.ini",
|
||||||
ensure => present,
|
ensure => present,
|
||||||
section => 'jetty',
|
section => 'jetty',
|
||||||
|
require => File["${confdir}/puppetdb.ini"],
|
||||||
}
|
}
|
||||||
|
|
||||||
$cleartext_setting_ensure = $disable_cleartext ? {
|
$cleartext_setting_ensure = $disable_cleartext ? {
|
||||||
|
|
|
@ -3,13 +3,23 @@ class puppetdb::server::puppetdb (
|
||||||
$certificate_whitelist_file = $puppetdb::params::certificate_whitelist_file,
|
$certificate_whitelist_file = $puppetdb::params::certificate_whitelist_file,
|
||||||
$certificate_whitelist = $puppetdb::params::certificate_whitelist,
|
$certificate_whitelist = $puppetdb::params::certificate_whitelist,
|
||||||
$confdir = $puppetdb::params::confdir,
|
$confdir = $puppetdb::params::confdir,
|
||||||
|
$puppetdb_user = $puppetdb::params::puppetdb_user,
|
||||||
|
$puppetdb_group = $puppetdb::params::puppetdb_group,
|
||||||
) inherits puppetdb::params {
|
) inherits puppetdb::params {
|
||||||
|
|
||||||
|
file { "${confdir}/puppetdb.ini":
|
||||||
|
ensure => file,
|
||||||
|
owner => $puppetdb_user,
|
||||||
|
group => $puppetdb_group,
|
||||||
|
mode => '0600',
|
||||||
|
}
|
||||||
|
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
path => "${confdir}/puppetdb.ini",
|
path => "${confdir}/puppetdb.ini",
|
||||||
ensure => present,
|
ensure => present,
|
||||||
section => 'puppetdb',
|
section => 'puppetdb',
|
||||||
|
require => File["${confdir}/puppetdb.ini"],
|
||||||
}
|
}
|
||||||
|
|
||||||
$certificate_whitelist_setting_ensure = empty($certificate_whitelist) ? {
|
$certificate_whitelist_setting_ensure = empty($certificate_whitelist) ? {
|
||||||
|
|
|
@ -43,12 +43,13 @@ class puppetdb::server::read_database (
|
||||||
ensure => file,
|
ensure => file,
|
||||||
owner => $puppetdb_user,
|
owner => $puppetdb_user,
|
||||||
group => $puppetdb_group,
|
group => $puppetdb_group,
|
||||||
mode => '0600';
|
mode => '0600',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$file_require = File["${confdir}/read_database.ini"]
|
||||||
$ini_setting_require = str2bool($database_validate) ? {
|
$ini_setting_require = str2bool($database_validate) ? {
|
||||||
false => undef,
|
false => $file_require,
|
||||||
default => Class['puppetdb::server::validate_read_db'],
|
default => [$file_require, Class['puppetdb::server::validate_read_db']],
|
||||||
}
|
}
|
||||||
# Set the defaults
|
# Set the defaults
|
||||||
Ini_setting {
|
Ini_setting {
|
||||||
|
@ -74,13 +75,13 @@ class puppetdb::server::read_database (
|
||||||
|
|
||||||
$subname = "//${database_host}:${database_port}/${database_name}${database_suffix}"
|
$subname = "//${database_host}:${database_port}/${database_name}${database_suffix}"
|
||||||
|
|
||||||
ini_setting { 'puppetdb_read_psdatabase_username':
|
ini_setting { 'puppetdb_read_database_username':
|
||||||
setting => 'username',
|
setting => 'username',
|
||||||
value => $database_username,
|
value => $database_username,
|
||||||
}
|
}
|
||||||
|
|
||||||
if $database_password != undef {
|
if $database_password != undef {
|
||||||
ini_setting { 'puppetdb_read_psdatabase_password':
|
ini_setting { 'puppetdb_read_database_password':
|
||||||
setting => 'password',
|
setting => 'password',
|
||||||
value => $database_password,
|
value => $database_password,
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,8 @@ describe 'puppetdb', :type => :class do
|
||||||
|
|
||||||
describe 'when using default values for puppetdb class' do
|
describe 'when using default values for puppetdb class' do
|
||||||
it { should contain_class('puppetdb') }
|
it { should contain_class('puppetdb') }
|
||||||
|
it { should contain_class('puppetdb::server') }
|
||||||
|
it { should contain_class('puppetdb::database::postgresql') }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,13 @@ describe 'puppetdb::server::database', :type => :class do
|
||||||
it { should contain_class('puppetdb::server::database') }
|
it { should contain_class('puppetdb::server::database') }
|
||||||
|
|
||||||
describe 'when using default values' do
|
describe 'when using default values' do
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/database.ini').
|
||||||
|
with(
|
||||||
|
'ensure' => 'file',
|
||||||
|
'owner' => 'puppetdb',
|
||||||
|
'group' => 'puppetdb',
|
||||||
|
'mode' => '0600'
|
||||||
|
)}
|
||||||
it { should contain_ini_setting('puppetdb_psdatabase_username').
|
it { should contain_ini_setting('puppetdb_psdatabase_username').
|
||||||
with(
|
with(
|
||||||
'ensure' => 'present',
|
'ensure' => 'present',
|
||||||
|
|
|
@ -21,7 +21,13 @@ describe 'puppetdb::server::global', :type => :class do
|
||||||
'setting' => 'vardir',
|
'setting' => 'vardir',
|
||||||
'value' => '/opt/puppetlabs/server/data/puppetdb'
|
'value' => '/opt/puppetlabs/server/data/puppetdb'
|
||||||
)}
|
)}
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/config.ini').
|
||||||
|
with(
|
||||||
|
'ensure' => 'file',
|
||||||
|
'owner' => 'puppetdb',
|
||||||
|
'group' => 'puppetdb',
|
||||||
|
'mode' => '0600'
|
||||||
|
)}
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'when using a legacy puppetdb version' do
|
describe 'when using a legacy puppetdb version' do
|
||||||
|
|
|
@ -12,6 +12,13 @@ describe 'puppetdb::server::jetty', :type => :class do
|
||||||
it { should contain_class('puppetdb::server::jetty') }
|
it { should contain_class('puppetdb::server::jetty') }
|
||||||
|
|
||||||
describe 'when using default values' do
|
describe 'when using default values' do
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/jetty.ini').
|
||||||
|
with(
|
||||||
|
'ensure' => 'file',
|
||||||
|
'owner' => 'puppetdb',
|
||||||
|
'group' => 'puppetdb',
|
||||||
|
'mode' => '0600'
|
||||||
|
)}
|
||||||
it { should contain_ini_setting('puppetdb_host').
|
it { should contain_ini_setting('puppetdb_host').
|
||||||
with(
|
with(
|
||||||
'ensure' => 'present',
|
'ensure' => 'present',
|
||||||
|
|
|
@ -28,6 +28,13 @@ describe 'puppetdb::server::puppetdb', :type => :class do
|
||||||
'mode' => '0644',
|
'mode' => '0644',
|
||||||
'content' => ''
|
'content' => ''
|
||||||
)}
|
)}
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/puppetdb.ini').
|
||||||
|
with(
|
||||||
|
'ensure' => 'file',
|
||||||
|
'owner' => 'puppetdb',
|
||||||
|
'group' => 'puppetdb',
|
||||||
|
'mode' => '0600'
|
||||||
|
)}
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'when restricting access to puppetdb' do
|
describe 'when restricting access to puppetdb' do
|
||||||
|
|
107
spec/unit/classes/server/read_database_ini_spec.rb
Normal file
107
spec/unit/classes/server/read_database_ini_spec.rb
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'puppetdb::server::read_database', :type => :class do
|
||||||
|
context 'on a supported platform' do
|
||||||
|
let(:facts) do
|
||||||
|
{
|
||||||
|
:osfamily => 'RedHat',
|
||||||
|
:operatingsystem => 'RedHat',
|
||||||
|
:operatingsystemrelease => '7.0',
|
||||||
|
:fqdn => 'test.domain.local',
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
it { should contain_class('puppetdb::server::read_database') }
|
||||||
|
|
||||||
|
describe 'when using default values' do
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/read_database.ini').with('ensure' => 'absent') }
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'when using minimum working values' do
|
||||||
|
let(:params) do
|
||||||
|
{
|
||||||
|
'database_host' => 'puppetdb'
|
||||||
|
}
|
||||||
|
end
|
||||||
|
it { should contain_file('/etc/puppetlabs/puppetdb/conf.d/read_database.ini').
|
||||||
|
with(
|
||||||
|
'ensure' => 'file',
|
||||||
|
'owner' => 'puppetdb',
|
||||||
|
'group' => 'puppetdb',
|
||||||
|
'mode' => '0600'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_database_username').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'username',
|
||||||
|
'value' => 'puppetdb'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_database_password').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'password',
|
||||||
|
'value' => 'puppetdb'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_classname').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'classname',
|
||||||
|
'value' => 'org.postgresql.Driver'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_subprotocol').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'subprotocol',
|
||||||
|
'value' => 'postgresql'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_subname').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'subname',
|
||||||
|
'value' => '//puppetdb:5432/puppetdb'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_log_slow_statements').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'log-slow-statements',
|
||||||
|
'value' => 10
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_conn_max_age').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'conn-max-age',
|
||||||
|
'value' => '60'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_conn_keep_alive').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'conn-keep-alive',
|
||||||
|
'value' => '45'
|
||||||
|
)}
|
||||||
|
it { should contain_ini_setting('puppetdb_read_conn_lifetime').
|
||||||
|
with(
|
||||||
|
'ensure' => 'present',
|
||||||
|
'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini',
|
||||||
|
'section' => 'read-database',
|
||||||
|
'setting' => 'conn-lifetime',
|
||||||
|
'value' => '0'
|
||||||
|
)}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -16,7 +16,15 @@ describe 'puppetdb::server', :type => :class do
|
||||||
basefacts
|
basefacts
|
||||||
end
|
end
|
||||||
|
|
||||||
it { should contain_class('puppetdb::server') }
|
describe 'when using default values' do
|
||||||
|
it { should contain_class('puppetdb::server') }
|
||||||
|
it { should contain_class('puppetdb::server::global') }
|
||||||
|
it { should contain_class('puppetdb::server::command_processing') }
|
||||||
|
it { should contain_class('puppetdb::server::database') }
|
||||||
|
it { should contain_class('puppetdb::server::read_database') }
|
||||||
|
it { should contain_class('puppetdb::server::jetty') }
|
||||||
|
it { should contain_class('puppetdb::server::puppetdb') }
|
||||||
|
end
|
||||||
|
|
||||||
describe 'when not specifying JAVA_ARGS' do
|
describe 'when not specifying JAVA_ARGS' do
|
||||||
it { should_not contain_ini_subsetting('Xms') }
|
it { should_not contain_ini_subsetting('Xms') }
|
||||||
|
|
Loading…
Reference in a new issue