aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/manifests/snapshot.pp
blob: 1156928e1d838926e98c912129f5789f10f028ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
define git::snapshot( $source,
                      $refresh = '*/5',
                      $user = 'root',
                      $branch = 'master') {
    include git::client
    #TODO
    # should handle branch -> clone -n + branch + checkout
    # create a script
    # Idealy, should be handled by vcsrepo
    # https://github.com/bruce/puppet-vcsrepo
    # once it is merged in puppet
    exec { "/usr/bin/git clone -b ${branch} ${source} ${name}":
        creates => $name,
        user    => $user
    }

    if ($refresh != '0') {
        cron { "update ${name}":
            command => "cd ${name} && /usr/bin/git pull -q && /usr/bin/git submodule --quiet update --init --recursive",
            user    => $user,
            minute  => $refresh
        }
    }
}