]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/apache/manifests/mod/fcgid.pp
remove all openstack foo
[dsa-puppet.git] / 3rdparty / modules / apache / manifests / mod / fcgid.pp
diff --git a/3rdparty/modules/apache/manifests/mod/fcgid.pp b/3rdparty/modules/apache/manifests/mod/fcgid.pp
deleted file mode 100644 (file)
index a143c2b..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-class apache::mod::fcgid(
-  $options = {},
-) {
-  if $::osfamily == 'RedHat' and $::operatingsystemmajrelease == '7' {
-    $loadfile_name = 'unixd_fcgid.load'
-  } else {
-    $loadfile_name = undef
-  }
-
-  ::apache::mod { 'fcgid':
-    loadfile_name => $loadfile_name
-  }
-
-  # Template uses:
-  # - $options
-  file { 'fcgid.conf':
-    ensure  => file,
-    path    => "${::apache::mod_dir}/fcgid.conf",
-    content => template('apache/mod/fcgid.conf.erb'),
-    require => Exec["mkdir ${::apache::mod_dir}"],
-    before  => File[$::apache::mod_dir],
-    notify  => Class['apache::service'],
-  }
-}