X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fstatic_source.pp;h=821a6cf0445ce7619c73937590e856828014b2e9;hb=b5b17876a34290b9816805a274c81a2ffc209145;hp=e44624b99198fa4145c7b06f2d44139d48cd6440;hpb=2ee825a91909505b0dcca7d2392207e3bf19b9a8;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/static_source.pp b/modules/roles/manifests/static_source.pp index e44624b99..821a6cf04 100644 --- a/modules/roles/manifests/static_source.pp +++ b/modules/roles/manifests/static_source.pp @@ -1,14 +1,10 @@ -class roles::static_source inherits roles::static_base { - file { - '/etc/ssh/userkeys/staticsync': - content => template('roles/static-mirroring/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-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: