aboutsummaryrefslogtreecommitdiffstats
path: root/modules/puppet
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-02-19 17:45:13 +0000
committerMichael Scherer <misc@mageia.org>2012-02-19 17:45:13 +0000
commit8e91ac4c012e3c7aea307b237091ff1f4099d864 (patch)
treee56ec2e1e70cdd1e53dc5813507a15df43074be2 /modules/puppet
parentaf0efa3bed5cf45ea19953953629e515576ec4b7 (diff)
downloadpuppet-8e91ac4c012e3c7aea307b237091ff1f4099d864.tar
puppet-8e91ac4c012e3c7aea307b237091ff1f4099d864.tar.gz
puppet-8e91ac4c012e3c7aea307b237091ff1f4099d864.tar.bz2
puppet-8e91ac4c012e3c7aea307b237091ff1f4099d864.tar.xz
puppet-8e91ac4c012e3c7aea307b237091ff1f4099d864.zip
add the rack config file for thin
Diffstat (limited to 'modules/puppet')
-rw-r--r--modules/puppet/manifests/thin.pp5
-rw-r--r--modules/puppet/templates/config.ru16
2 files changed, 21 insertions, 0 deletions
diff --git a/modules/puppet/manifests/thin.pp b/modules/puppet/manifests/thin.pp
index 4b9ae297..8835353f 100644
--- a/modules/puppet/manifests/thin.pp
+++ b/modules/puppet/manifests/thin.pp
@@ -12,7 +12,12 @@ class puppet::thin {
content => "Listen 8140",
}
+ $service_name = 'thin_puppet_master'
file { '/etc/puppet/thin.yml':
content => template('puppet/thin.yml'),
}
+
+ file { '/usr/local/share/puppet.config.ru':
+ content => template('puppet/config.ru'),
+ }
}
diff --git a/modules/puppet/templates/config.ru b/modules/puppet/templates/config.ru
new file mode 100644
index 00000000..aba07857
--- /dev/null
+++ b/modules/puppet/templates/config.ru
@@ -0,0 +1,16 @@
+# a config.ru, for use with every rack-compatible webserver.
+# SSL needs to be handled outside this, though.
+
+# if puppet is not in your RUBYLIB:
+# $:.unshift('/opt/puppet/lib')
+
+$0 = '<%= service_name %>'
+
+# if you want debugging:
+# ARGV << "--debug"
+
+ARGV << "--rack"
+require 'puppet/application/master'
+# we're usually running inside a Rack::Builder.new {} block,
+# therefore we need to call run *here*.
+run Puppet::Application[:master].run