From b2209850b0659eb299632c54ece079477fc50246 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Fri, 5 Nov 2010 23:29:16 +0000 Subject: - add a define to ease catalyst application deployement --- modules/apache/manifests/init.pp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'modules/apache/manifests') diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 63b1878d..2bbf03f4 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -53,4 +53,19 @@ class apache { ensure => installed } } + + define vhost_catalyst_app($script, $process = 4, $force_ssl = false) { + + include apache::mod_fastcgi + + file { "$name.conf": + path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, + mode => 644, + notify => Service['apache'], + content => template("apache/vhost_catalyst_app.conf") + } + } } -- cgit v1.2.1