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

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

Issue 4646507064066048: Issue 567 Make list of used keywords available in Trac. (Closed)
Patch Set: Created May 27, 2014, 3:53 p.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
@@ -113,6 +113,12 @@
require => Exec['trac_env']
}
+ exec { 'install_Tractags':
+ command => "pip install svn+http://trac-hacks.org/svn/tagsplugin/tags/0.7/",
+ require => Package['python-pip'],
+ unless => "python -c 'import tagsplugin'",
+ }
+
file {"/home/trac/htdocs/htdocs/common/adblockplus_logo.png":
ensure => present,
source => 'puppet:///modules/trac/adblockplus_logo.png',
@@ -139,7 +145,8 @@
Exec['install_TicketTemplate'],
Exec['install_NeverNotifyUpdater'],
Exec['install_MasterTickets'],
- Exec['install_ThemeEngine']]
+ Exec['install_ThemeEngine'],
+ Exec['install_Tractags']]
}
exec {"deploy":
« 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