aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/repositories/manifests/git.pp
blob: 940940e456260301ad76c98aabf19edee1fc78a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class repositories::git {
    file { "/git":
        ensure => directory,
        owner => root,
        group => root,
        mode => 755, 
    }

    git::repository { "/git/forum":
        description => "Reference code for forum.$domain",
        group => "mga-forum-developers", 
    }

    git::repository { "/git/initscripts":
        description => "Source for initscripts package",
        group => "mga-packagers-committers", 
    }
}