aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/repositories/manifests/sparkleshare.pp
blob: 302e07c1a7f408e22d71af0b769392b285e0e5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
class repositories::sparkleshare {
    $sp_dir = '/git/sparkleshare'
    file { $sp_dir:
        ensure => directory,
    }

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