aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mga-mirrors/manifests/init.pp
blob: 97bdc99430613879f57d1333e8c84ff608d65c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class mga-mirrors {

    include apache::mod_fcgid

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

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