Skip to content

Commit

Permalink
Remove deprecated source_permissions setting
Browse files Browse the repository at this point in the history
Running test an error occurred, that source_permissions is deprecated.
Now it is removed with the proposed settings.
  • Loading branch information
chloesoe authored and andrekeller committed May 14, 2019
1 parent 6a9116a commit a3c5458
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions manifests/ca.pp
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,14 @@
})

file { "${etc_directory}/openvpn/${name}/easy-rsa" :
ensure => directory,
recurse => true,
links => 'follow',
source_permissions => 'use',
group => 0,
source => "file:${openvpn::easyrsa_source}",
require => File["${etc_directory}/openvpn/${name}"],
ensure => directory,
recurse => true,
links => 'follow',
owner => 0,
group => 0,
mode => '0644',
source => "file:${openvpn::easyrsa_source}",
require => File["${etc_directory}/openvpn/${name}"],
}

file { "${etc_directory}/openvpn/${name}/easy-rsa/revoked":
Expand Down

0 comments on commit a3c5458

Please sign in to comment.