Send update component request to proper master host
[mirror/dsa-puppet.git] / modules / roles / manifests / static_source.pp
1 class roles::static_source {
2         include roles::static_base
3         file { '/etc/ssh/userkeys/staticsync':
4                 content => template('roles/static-mirroring/static-mirror-authorized_keys.erb'),
5         }
6         file { '/usr/local/bin/static-update-component':
7                 source => 'puppet:///modules/roles/static-mirroring/static-update-component',
8                 mode    => '0555',
9         }
10         file { '/usr/local/bin/static-mirror-ssh-wrap':
11                 source => 'puppet:///modules/roles/static-mirroring/static-mirror-ssh-wrap',
12                 mode   => '0555',
13         }
14 }