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

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

Issue 6226871737909248: Added in-progress, review-URL and ready fields to Trac, renamed owner field and prohibited notifica… (Closed)
Patch Set: Issue #168 Added notification enhancements. Created March 18, 2014, 10:41 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 | « no previous file | modules/trac/templates/trac.ini.erb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/trac/manifests/init.pp
===================================================================
--- a/modules/trac/manifests/init.pp
+++ b/modules/trac/manifests/init.pp
@@ -109,6 +109,12 @@
unless => "python -c 'import mastertickets'",
}
+ exec { 'install_NeverNotifyUpdater':
+ command => "pip install svn+http://trac-hacks.org/svn/nevernotifyupdaterplugin/1.0/",
+ require => Package['subversion', 'python-pip'],
+ unless => "python -c 'import nevernotifyupdaterplugin'",
+ }
+
file {"/home/trac/environment/conf/trac.ini":
ensure => present,
content => template('trac/trac.ini.erb'),
@@ -133,6 +139,7 @@
Exec['install_AccountManager'],
Exec['install_AutocompleteUsers'],
Exec['install_TicketTemplate'],
+ Exec['install_NeverNotifyUpdater'],
Exec['install_MasterTickets']]
}
« no previous file with comments | « no previous file | modules/trac/templates/trac.ini.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld