* modules/pypimirror/templates/run-mirror.sh.erb: Aborting the
mirror downloader prematurely should not allow the indexer to start
running. This has caused corrupt indexes in the past.
Change-Id: I42e3390910909e02c84f3a1d9641b4fc3b004d31
Reviewed-on: https://review.openstack.org/24021
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Paul Belanger <paul.belanger@polybeacon.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
Change-Id: I409bd50ae374e0288531f07cfeea34856c5f8067
Reviewed-on: https://review.openstack.org/17319
Approved: James E. Blair <corvus@inaugust.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Tested-by: James E. Blair <corvus@inaugust.com>
Instead of keeping many of these files directly in the tree, use them
from the out-of-tree jeepyb project, which makes them easier to consume
for other people who are not us.
Change-Id: Id704f2e17dd80709ef63cbbf2c5475a08a835f91
Reviewed-on: https://review.openstack.org/16777
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
Adding a yml file to the project but not listing it in the .pp file
only really ever caused bugs.
Moved the full openstack project list to a variable for re-use.
Change-Id: I211b5cf54d5a84c6136a4b04ea819c688cc1e2b6
If we redirect stderr to the logfile, then we lose error messages that
should wind up in cron spam.
Change-Id: I054d6d63eb3c3a59339fb6e0be232fd59ab43870
Fixes bug 999242.
No longer make Nginx default site config file a
static file. Instead, use a template that correctly
sets the document root.
Change-Id: Ib4a21319e78dc905cb33514a1371d7719be0380a
New module to setup a Python Package Index mirror. Nginx is setup
to serve as the mirror web server. The default setup is to mirror
everything. Example of setting up a new mirror, restricting what
we will mirror:
node "mymirror.mydomain.org" {
include openstack_cron
class { "pypimirror":
base_url => "http://mymirror.mydomain.org",
package_matches = ["nose", "pep8", "simplejson"],
}
}
To use it:
pip install <package> -i http://mymirror.mydomain.org
Change-Id: I36234b8242df0e9d1e7dca7e896005e9e46a9edf