aboutsummaryrefslogtreecommitdiffstats
path: root/modules/viewvc/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/viewvc/manifests/init.pp')
-rw-r--r--modules/viewvc/manifests/init.pp74
1 files changed, 74 insertions, 0 deletions
diff --git a/modules/viewvc/manifests/init.pp b/modules/viewvc/manifests/init.pp
new file mode 100644
index 00000000..bd676f29
--- /dev/null
+++ b/modules/viewvc/manifests/init.pp
@@ -0,0 +1,74 @@
+class viewvc {
+ include apache::mod::fcgid
+ include viewvc::var
+ package {['viewvc',
+ 'python2-svn',
+ 'python-flup']: }
+
+ # http_expiration_time = 600
+ # svn_roots = admin: svn://svn.mageia.org/svn/adm/
+
+ file { '/etc/viewvc/viewvc.conf':
+ content => template($viewvc::var::tmpl_viewvc_conf),
+ notify => Service['apache'],
+ require => Package['viewvc'],
+ }
+
+ apache::webapp_other { 'viewvc':
+ webapp_file => 'viewvc/webapp.conf',
+ }
+
+ mga_common::local_script { 'kill_viewvc':
+ content => template('viewvc/kill_viewvc.sh'),
+ }
+
+ cron { 'kill_viewvc':
+ command => '/usr/local/bin/kill_viewvc',
+ hour => '*',
+ minute => '*/5',
+ user => 'apache',
+ environment => 'MAILTO=root',
+ }
+
+ $viewvc_docroot = '/usr/share/viewvc/templates/docroot'
+ $robotsfile = "$viewvc_docroot/robots.txt"
+ file { $robotsfile:
+ ensure => present,
+ mode => '0644',
+ owner => root,
+ group => root,
+ source => 'puppet:///modules/viewvc/robots.txt',
+ }
+
+ file { "$viewvc_docroot/setcookieredirect.html":
+ ensure => present,
+ mode => '0644',
+ owner => root,
+ group => root,
+ source => 'puppet:///modules/viewvc/setcookieredirect.html',
+ }
+
+ $vhost_aliases = {
+ '/viewvc' => $viewvc_docroot,
+ '/robots.txt' => $robotsfile,
+ '/_check' => "$viewvc_docroot/setcookieredirect.html",
+ }
+
+ $script_aliases = {
+ '/' => '/usr/share/viewvc/bin/wsgi/viewvc.fcgi/',
+ }
+
+ $process = 4
+
+ apache::vhost::base { $viewvc::var::hostname:
+ aliases => $vhost_aliases,
+ content => template('apache/vhost_fcgid_norobot.conf'),
+ }
+
+ apache::vhost::base { "ssl_${viewvc::var::hostname}":
+ vhost => $viewvc::var::hostname,
+ use_ssl => true,
+ aliases => $vhost_aliases,
+ content => template('apache/vhost_fcgid_norobot.conf'),
+ }
+}