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 |
1032 |
syntax_check => ['check_puppet_templates','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 |
1596 |
syntax_check => ['check_po'], |
22 |
misc |
753 |
cia_post => true, |
23 |
|
|
cia_module => "soft", |
24 |
misc |
1572 |
i18n_mail => ["i18n@$domain"], |
25 |
misc |
753 |
} |
26 |
|
|
|
27 |
|
|
subversion::repository { "/svn/web/": |
28 |
misc |
1565 |
group => "mga-web", |
29 |
misc |
753 |
cia_post => true, |
30 |
|
|
cia_module => "web", |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
subversion::repository { "/svn/packages/": |
34 |
boklm |
764 |
group => "mga-packagers-committers", |
35 |
misc |
753 |
no_binary => true, |
36 |
misc |
1240 |
commit_mail => ["packages-commits@ml.$domain"], |
37 |
misc |
753 |
cia_post => true, |
38 |
|
|
cia_module => "packages", |
39 |
|
|
cia_ignore_author => '^schedbot$', |
40 |
|
|
} |
41 |
|
|
|
42 |
misc |
757 |
file { "/svn/binrepos/": |
43 |
|
|
ensure => directory |
44 |
|
|
} |
45 |
|
|
|
46 |
misc |
753 |
subversion::repository { "/svn/binrepos/cauldron/": |
47 |
boklm |
764 |
group => "mga-packagers-committers", |
48 |
misc |
753 |
cia_post => true, |
49 |
|
|
cia_module => "binrepos", |
50 |
|
|
cia_ignore_author => '^schedbot$', |
51 |
|
|
} |
52 |
|
|
|
53 |
|
|
} |