aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/nodes/sucuk.pp
blob: 8c2c55988dd67afb3e03e5b927b148d922f214c5 (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
# 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': }

    include websites::www
    include websites::nav

    include wikis

    # gitweb
    include repositories::git_mirror
    include cgit
    include gitmirror

    include mirrorbrain

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

}