1 |
misc |
753 |
class repositories::subversion { |
2 |
|
|
|
3 |
misc |
981 |
file { "/svn": |
4 |
|
|
ensure => directory, |
5 |
|
|
owner => root, |
6 |
|
|
group => root, |
7 |
|
|
mode => 755, |
8 |
|
|
} |
9 |
|
|
|
10 |
misc |
753 |
subversion::repository { "/svn/adm/": |
11 |
|
|
group => "mga-sysadmin", |
12 |
misc |
879 |
commit_mail => ["sysadmin-commits@ml.$domain"], |
13 |
misc |
1029 |
syntax_check => ['check_puppet'], |
14 |
misc |
753 |
cia_post => true, |
15 |
|
|
cia_module => "sysadm", |
16 |
|
|
} |
17 |
|
|
|
18 |
|
|
subversion::repository { "/svn/soft/": |
19 |
|
|
group => "mga-packagers", |
20 |
misc |
1017 |
commit_mail => ["soft-commits@ml.$domain"], |
21 |
misc |
753 |
cia_post => true, |
22 |
|
|
cia_module => "soft", |
23 |
|
|
} |
24 |
|
|
|
25 |
|
|
subversion::repository { "/svn/web/": |
26 |
|
|
group => "mga-committers", |
27 |
|
|
cia_post => true, |
28 |
|
|
cia_module => "web", |
29 |
|
|
} |
30 |
|
|
|
31 |
|
|
subversion::repository { "/svn/packages/": |
32 |
boklm |
764 |
group => "mga-packagers-committers", |
33 |
misc |
753 |
no_binary => true, |
34 |
|
|
cia_post => true, |
35 |
|
|
cia_module => "packages", |
36 |
|
|
cia_ignore_author => '^schedbot$', |
37 |
|
|
} |
38 |
|
|
|
39 |
misc |
757 |
file { "/svn/binrepos/": |
40 |
|
|
ensure => directory |
41 |
|
|
} |
42 |
|
|
|
43 |
misc |
753 |
subversion::repository { "/svn/binrepos/cauldron/": |
44 |
boklm |
764 |
group => "mga-packagers-committers", |
45 |
misc |
753 |
cia_post => true, |
46 |
|
|
cia_module => "binrepos", |
47 |
|
|
cia_ignore_author => '^schedbot$', |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
} |