aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/repositories/manifests/git.pp
blob: fbbacad2f340f8e20b55fa864202ddbeab31fe1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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", 
    }
}