Skip to content

Commit

Permalink
Allow anyone to read the dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
nward committed May 12, 2021
1 parent bee9a64 commit 038d176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
concat { "${freeradius::fr_basepath}/dictionary":
owner => 'root',
group => $freeradius::fr_group,
mode => '0640',
mode => '0644',
require => [Package[$freeradius::fr_package], Group[$freeradius::fr_group]],
}
concat::fragment { 'dictionary_header':
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/freeradius_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
is_expected.to contain_concat('/etc/raddb/dictionary')
.with(
'group' => 'radiusd',
'mode' => '0640',
'mode' => '0644',
'owner' => 'root',
)
.that_requires('Package[freeradius]')
Expand Down

0 comments on commit 038d176

Please sign in to comment.