aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/mod/fcgid.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apache/manifests/mod/fcgid.pp')
-rw-r--r--modules/apache/manifests/mod/fcgid.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/apache/manifests/mod/fcgid.pp b/modules/apache/manifests/mod/fcgid.pp
new file mode 100644
index 00000000..b8186a64
--- /dev/null
+++ b/modules/apache/manifests/mod/fcgid.pp
@@ -0,0 +1,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'),
+ }
+}