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

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

Issue 29323178: Issue 2849 - Drop HTTP trac-hacks.org downloads in favour of HTTPS (Closed)
Patch Set: Created Aug. 3, 2015, 12:50 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/trac/manifests/init.pp
diff --git a/modules/trac/manifests/init.pp b/modules/trac/manifests/init.pp
index a9c86be8a902100f9a6dc2441e0efbcb6603fd06..3697f8a2094c7f2645865ab0ac21d43441d31131 100644
--- a/modules/trac/manifests/init.pp
+++ b/modules/trac/manifests/init.pp
@@ -49,43 +49,43 @@ class trac(
}
exec { 'install_BlackMagicTicketTweaks':
- command => "pip install svn+http://trac-hacks.org/svn/blackmagictickettweaksplugin/0.12/",
+ command => "pip install svn+https://trac-hacks.org/svn/blackmagictickettweaksplugin/0.12/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import blackmagic'",
}
exec { 'install_SensitiveTickets':
- command => "pip install svn+http://trac-hacks.org/svn/sensitiveticketsplugin/trunk/",
+ command => "pip install svn+https://trac-hacks.org/svn/sensitiveticketsplugin/trunk/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import sensitivetickets'",
}
exec { 'install_AccountManager':
- command => "pip install svn+http://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4/",
+ command => "pip install svn+https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import acct_mgr'",
}
exec { 'install_TicketTemplate':
- command => "pip install svn+http://trac-hacks.org/svn/tractickettemplateplugin/0.11/",
+ command => "pip install svn+https://trac-hacks.org/svn/tractickettemplateplugin/0.11/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import tickettemplate'",
}
exec { 'install_AutocompleteUsers':
- command => "pip install svn+http://trac-hacks.org/svn/autocompleteusersplugin/trunk/",
+ command => "pip install svn+https://trac-hacks.org/svn/autocompleteusersplugin/trunk/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import autocompleteusers'",
}
exec { 'install_MasterTickets':
- command => "pip install svn+http://trac-hacks.org/svn/masterticketsplugin/trunk/",
+ command => "pip install svn+https://trac-hacks.org/svn/masterticketsplugin/trunk/",
require => Package['subversion', 'python-pip', 'graphviz'],
unless => "python -c 'import mastertickets'",
}
exec { 'install_NeverNotifyUpdater':
- command => "pip install svn+http://trac-hacks.org/svn/nevernotifyupdaterplugin/1.0/",
+ command => "pip install svn+https://trac-hacks.org/svn/nevernotifyupdaterplugin/1.0/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import nevernotifyupdaterplugin'",
}
@@ -109,13 +109,13 @@ class trac(
}
exec { 'install_Tractags':
- command => "pip install svn+http://trac-hacks.org/svn/tagsplugin/tags/0.7/",
+ command => "pip install svn+https://trac-hacks.org/svn/tagsplugin/tags/0.7/",
require => Package['python-pip'],
unless => "python -c 'import tractags'",
}
exec { 'install_PrivateTickets':
- command => "pip install svn+http://trac-hacks.org/svn/privateticketsplugin/tags/2.0.2/",
+ command => "pip install svn+https://trac-hacks.org/svn/privateticketsplugin/tags/2.0.2/",
require => Package['subversion', 'python-pip'],
unless => "python -c 'import privatetickets'",
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld