aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/nodes/sucuk.pp
blob: dcbd969d584bd70ca1f6f6e6201d9a4c31f909e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# server for various task
node sucuk {
# Location: IELO datacenter (marseille)
    include common::default_mageia_server
    timezone::timezone { 'Europe/Paris': }

    include access_classes::admin

    include postgresql::server
    postgresql::tagged { 'default': }

    class {'epoll::var':
        db_password => extlookup('epoll_pgsql','x'),
    }
    
    #include epoll
    #include epoll::create_db

    include catdap
    include mga-mirrors

    include wikis
    include websites::perl
    include websites::www
    include websites::nav

    include bugzilla

    # gitweb
    include repositories::git_mirror
    include cgit
    include gitmirror

    include repositories::svn_mirror
    include viewvc

    include mirrorbrain

    include dns::server

    include xymon::server
    apache::vhost_simple { "xymon.${::domain}":
        location => '/usr/share/xymon/www',
    }

    class { 'mgapeople':
        ldap_server => "ldap.${::domain}",
        binddn      => 'cn=mgapeople-alamut,ou=System Accounts,dc=mageia,dc=org',
        bindpw      => extlookup('mgapeople_ldap','x'),
        vhost       => "people.${::domain}",
        vhostdir    => "/var/www/vhosts/people.${::domain}",
        maintdburl  => "http://pkgsubmit.${::domain}/data/maintdb.txt",
    }

    class { 'mga-treasurer':
        vhost    => "treasurer.${::domain}",
        vhostdir => "/var/www/vhosts/treasurer.${::domain}",
    }

    youri-check::report_www { 'check': }

    youri-check::createdb_user {'config_cauldron':
        version => 'cauldron',
    }

    youri-check::config {'config_cauldron':
        version => 'cauldron',
    }
    youri-check::report { 'report_cauldron':
        version => 'cauldron',
        hour    => '*',
        minute  => '24'
    }


    youri-check::createdb_user {'config_5':
	version => '5',
    }

    youri-check::config {'config_5':
        version => '5',
    }

    youri-check::report {'report_5':
        version => '5',
        hour    => '*',
        minute  => '54'
    }

    # to create all phpbb database on alamut
#    phpbb::databases { $fqdn: }
#
#    include tld_redirections
#
#    include libvirtd::kvm

}