aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/mod/fcgid.pp
blob: b8186a64197eb2ff037ae545f482ca5399212226 (plain)
1
2
3
4
5
6
7
8
9
10
11
class apache::mod::fcgid {
    include apache::base
    package { 'apache-mod_fcgid': }

    file { 'urlescape':
        path    => '/usr/local/bin/urlescape',
        mode    => '0755',
        notify  => Service['apache'],
        content => template('apache/urlescape'),
    }
}