aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/repositories/manifests/sparkleshare.pp
blob: c95aabdf76a1e3703b24089d42dd12599f46ed58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class repositories::sparkleshare {
    $sp_dir = '/git/sparkleshare'
    file {$sp_dir:
	ensure => directory,
	owner => root,
	group => root,
	more => 755,
    }

    git::repository { "$sp_dir/test":
        description => "Test sparkleshare repository",
        group => "mga-packagers-committers", 
    }
}