File tree Expand file tree Collapse file tree 4 files changed +18
-14
lines changed Expand file tree Collapse file tree 4 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 98
98
99
99
if $database_password != undef and $manage_db_password {
100
100
ini_setting { 'puppetdb_psdatabase_password' :
101
- setting => ' password' ,
102
- value => $database_password ,
101
+ setting => ' password' ,
102
+ value => $database_password ,
103
+ show_diff => false ,
103
104
}
104
105
}
105
106
Original file line number Diff line number Diff line change 92
92
93
93
if $read_database_password != undef and $manage_db_password {
94
94
ini_setting { 'puppetdb_read_database_password' :
95
- setting => ' password' ,
96
- value => $read_database_password ,
95
+ setting => ' password' ,
96
+ value => $read_database_password ,
97
+ show_diff => false ,
97
98
}
98
99
}
99
100
Original file line number Diff line number Diff line change 38
38
it {
39
39
is_expected . to contain_ini_setting ( 'puppetdb_psdatabase_password' )
40
40
. with (
41
- 'ensure' => 'present' ,
42
- 'path' => "#{ pdbconfdir } /database.ini" ,
43
- 'section' => 'database' ,
44
- 'setting' => 'password' ,
45
- 'value' => 'puppetdb' ,
41
+ 'ensure' => 'present' ,
42
+ 'path' => "#{ pdbconfdir } /database.ini" ,
43
+ 'section' => 'database' ,
44
+ 'setting' => 'password' ,
45
+ 'value' => 'puppetdb' ,
46
+ 'show_diff' => false ,
46
47
)
47
48
}
48
49
it {
Original file line number Diff line number Diff line change 38
38
it {
39
39
is_expected . to contain_ini_setting ( 'puppetdb_read_database_password' )
40
40
. with (
41
- 'ensure' => 'present' ,
42
- 'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini' ,
43
- 'section' => 'read-database' ,
44
- 'setting' => 'password' ,
45
- 'value' => 'puppetdb-read' ,
41
+ 'ensure' => 'present' ,
42
+ 'path' => '/etc/puppetlabs/puppetdb/conf.d/read_database.ini' ,
43
+ 'section' => 'read-database' ,
44
+ 'setting' => 'password' ,
45
+ 'value' => 'puppetdb-read' ,
46
+ 'show_diff' => false ,
46
47
)
47
48
}
48
49
it {
You can’t perform that action at this time.
0 commit comments