aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/repositories/manifests/sparkleshare.pp
blob: cd799ce20d32e87a4e83344f79de4363d9416142 (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,
	mode => 755,
    }

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