X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fapache%2Fmanifests%2Fmod%2Fcgid.pp;fp=3rdparty%2Fmodules%2Fapache%2Fmanifests%2Fmod%2Fcgid.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=8946f652b9801a71c960aabcb69c0851fb61ecde;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/apache/manifests/mod/cgid.pp b/3rdparty/modules/apache/manifests/mod/cgid.pp deleted file mode 100644 index 8946f652b..000000000 --- a/3rdparty/modules/apache/manifests/mod/cgid.pp +++ /dev/null @@ -1,28 +0,0 @@ -class apache::mod::cgid { - case $::osfamily { - 'FreeBSD': {} - default: { - Class['::apache::mod::worker'] -> Class['::apache::mod::cgid'] - } - } - - # Debian specifies it's cgid sock path, but RedHat uses the default value - # with no config file - $cgisock_path = $::osfamily ? { - 'debian' => "\${APACHE_RUN_DIR}/cgisock", - 'freebsd' => 'cgisock', - default => undef, - } - ::apache::mod { 'cgid': } - if $cgisock_path { - # Template uses $cgisock_path - file { 'cgid.conf': - ensure => file, - path => "${::apache::mod_dir}/cgid.conf", - content => template('apache/mod/cgid.conf.erb'), - require => Exec["mkdir ${::apache::mod_dir}"], - before => File[$::apache::mod_dir], - notify => Class['apache::service'], - } - } -}