aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/manifests/init.pp
blob: a11ea9fc501e238cde99ce3bb9ec06de70686ced (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
class git {
    class common {
        package { 'git-core':
        }
    }

    class server inherits common {
        # TODO
        # integration with xinetd for anonymous co
        # creation of /git
        # define common syntax check, see svn 
        #        proper policy : no-fast-forward
        #            no branch ?
        #            no binary
        #            no big file
        #            no empty commit message, no root 
        #        automated push to another git repo ( see http://noone.org/blog/English/Computer/VCS/Thoughts%20on%20Gitorious%20and%20GitHub%20plus%20a%20useful%20git%20hook.futile
        # 
        # how do we handle commit permission ?
    }

    define repository {
        # TODO

    }

    class client inherits common {


    }

    define snapshot($source, $refresh ='*/5', $user = 'root') {
        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 $source $name":
            creates => $name,
            user => $user
        }
        
        cron { "update $name":
            # FIXME no -q ?
            command => "cd $name && /usr/bin/git pull",
            user => $user,
            minute => $refresh
        }
    }
}