X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fstatic_source.pp;h=dbdede18642f91e151703fb5f41cdb81ec47f48a;hb=f5aa9598cc51a64b70567e4b106565d46149a9b4;hp=a3b61034b45a786e99fa06c8b99f77f39c11ade7;hpb=914bf742b02962855222dbbda2a1af364689b75c;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/static_source.pp b/modules/roles/manifests/static_source.pp index a3b61034b..dbdede186 100644 --- a/modules/roles/manifests/static_source.pp +++ b/modules/roles/manifests/static_source.pp @@ -1,14 +1,14 @@ -class roles::static_source inherits roles::static_base { - file { - '/etc/ssh/userkeys/staticsync': - content => template('roles/static-mirror-authorized_keys.erb'), - ; - '/usr/local/bin/static-mirror-ssh-wrap': - source => "puppet:///modules/roles/static-mirroring/static-mirror-ssh-wrap", - mode => 555, - ; - } +class roles::static_source { + include roles::static_base + file { '/etc/ssh/userkeys/staticsync': + content => template('roles/static-mirroring/static-mirror-authorized_keys.erb'), + } + file { '/usr/local/bin/static-update-component': + content => template('roles/static-mirroring/static-update-component.erb'), + mode => '0555', + } + file { '/usr/local/bin/static-mirror-ssh-wrap': + source => 'puppet:///modules/roles/static-mirroring/static-mirror-ssh-wrap', + mode => '0555', + } } -# vim:set et: -# vim:set sts=4 ts=4: -# vim:set shiftwidth=4: