summaryrefslogtreecommitdiff
path: root/manifests/rrsync.pp
blob: a27b8ce41765bc325ff4f11006ceb9e81639762e (plain)
1
2
3
4
5
6
7
8
9
10
11
# manifests/rrsync.pp

class rsync::rrsync {
    include rsync::client

    file{'/usr/local/bin/rrsync':
        source => "puppet://$server/rsync/rrsync/rrsync",
        require => Package['rsync'],
        owner => root, group => 0, mode => 0755;
    }
}