Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/roundup/manifests/init.pp

Issue 6033763767156736: Concept for Roundup as issue tracker. (Closed)
Patch Set: Created Feb. 25, 2014, 8:34 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/nginx/manifests/init.pp ('k') | modules/roundup/templates/confidential.index.html.erb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/roundup/manifests/init.pp
===================================================================
--- a/modules/roundup/manifests/init.pp
+++ b/modules/roundup/manifests/init.pp
@@ -46,11 +46,96 @@
notify => Service['roundup']
}
+ file {"${tracker_home}/schema.py":
+ ensure => present,
+ content => template('roundup/schema.py.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/initial_data.py":
+ ensure => present,
+ content => template('roundup/initial_data.py.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/issue.item.html":
+ ensure => present,
+ content => template('roundup/issue.item.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/issue.index.html":
+ ensure => present,
+ content => template('roundup/issue.index.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/issue.search.html":
+ ensure => present,
+ content => template('roundup/issue.search.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/style.css":
+ ensure => present,
+ content => template('roundup/style.css.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/confidential.index.html":
+ ensure => present,
+ content => template('roundup/confidential.index.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+
+ file {"${tracker_home}/html/confidential.item.html":
+ ensure => present,
+ content => template('roundup/confidential.item.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/confidential.search.html":
+ ensure => present,
+ content => template('roundup/confidential.search.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
service {'roundup':
ensure => running,
hasstatus => false
}
+ file {"${tracker_home}/detectors/statusauditor.py":
+ ensure => present,
+ content => template('roundup/statusauditor.py.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/detectors/nosyreaction.py":
+ ensure => present,
+ content => template('roundup/nosyreaction.py.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
+ file {"${tracker_home}/html/page.html":
+ ensure => present,
+ content => template('roundup/page.html.erb'),
+ require => Exec['install'],
+ notify => Service['roundup']
+ }
+
$db_path = "${tracker_home}/db"
exec {'initialise':
« no previous file with comments | « modules/nginx/manifests/init.pp ('k') | modules/roundup/templates/confidential.index.html.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld