aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/buildsystem/manifests/init.pp')
-rw-r--r--modules/buildsystem/manifests/init.pp38
1 files changed, 0 insertions, 38 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp
index ba042d35..cafa22f8 100644
--- a/modules/buildsystem/manifests/init.pp
+++ b/modules/buildsystem/manifests/init.pp
@@ -101,44 +101,6 @@ class buildsystem {
}
}
- class binrepo inherits base {
- include sudo
- $binrepo_login = "binrepo"
- $binrepo_homedir = "/var/lib/$binrepo_login"
- $binrepodir = "$binrepo_homedir/data"
- $uploadinfosdir = "$binrepo_homedir/infos"
- $uploadbinpath = '/usr/local/bin/upload-bin'
- $uploadmail_from = "root@$domain"
- $uploadmail_to = "packages-commits@ml.$domain"
-
- user {"$binrepo_login":
- ensure => present,
- comment => "Binary files repository",
- managehome => true,
- shell => "/bin/bash",
- home => "$binrepo_homedir",
- }
-
- file { [$binrepodir, $uploadinfosdir]:
- ensure => directory,
- owner => $binrepo_login,
- }
-
- local_script {
- "upload-bin": content => template('buildsystem/upload-bin');
- "wrapper.upload-bin": content => template('buildsystem/wrapper.upload-bin');
- }
-
- sudo::sudoers_config { "binrepo":
- content => template("buildsystem/sudoers.binrepo")
- }
-
- apache::vhost_base { "binrepo.$domain":
- location => $binrepodir,
- content => template("buildsystem/vhost_binrepo.conf"),
- }
- }
-
class youri_submit {
include sudo