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

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

Issue 6394253802471424: Issue 1374 - Don`t hardcode web handlers for multiplexer (Closed)
Patch Set: Created Sept. 15, 2014, 10:05 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/updateserver/files/sitescripts ('k') | modules/web/manifests/server.pp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/updateserver/manifests/init.pp
===================================================================
--- a/modules/updateserver/manifests/init.pp
+++ b/modules/updateserver/manifests/init.pp
@@ -118,24 +118,23 @@ class updateserver(
environment => ['MAILTO=admins@adblockplus.org'],
command => $update_update_manifests_script,
user => 'sitescripts',
minute => '*/10',
require => Exec['update_update_manifests']
}
include spawn-fcgi
- package {['python-flup', 'python-mysqldb']:}
+ package {'python-flup':}
spawn-fcgi::pool {"multiplexer":
ensure => present,
fcgi_app => '/opt/sitescripts/multiplexer.fcgi',
socket => '/tmp/multiplexer-fastcgi.sock',
mode => '0666',
user => 'nginx',
children => 1,
require => [
Exec["fetch_sitescripts"],
Package["python-flup"],
- Package["python-mysqldb"],
],
}
}
« no previous file with comments | « modules/updateserver/files/sitescripts ('k') | modules/web/manifests/server.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld