aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mga-mirrors/manifests/init.pp
blob: 96a4fa7e26cdfdfd89e24142ac3d373fc967ecde (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
class mga-mirrors {
    
    $vhost = "mirrors.$domain"

    include apache::mod_fcgid

    package { 'mga-mirrors':
        ensure => installed
    }

    # add a apache vhost
    file { "$vhost.conf":
        path => "/etc/httpd/conf/vhosts.d/$vhost.conf",
        ensure => "present",
        owner => root,
        group => root,
        mode => 644,
        notify => Service['apache'],
        content => template("mga-mirrors/mirrors_vhost.conf")
    }
 
    $password = extlookup("mga_mirror_password")
 
    file { "mga-mirrors.ini": 
        path => "/etc/mga-mirrors.ini",    
        ensure => "present",
        owner => apache,
        group => apache,
        mode => 600,
        content => template("mga-mirrors/mga-mirrors.ini")
    }
}