~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to tools/noproxy

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
#
3
 
# clean http_proxy variables from environment as they make httpretty
4
 
# fail, but may be in the environment for reasons such as pip install
5
 
import os
6
 
import sys
7
 
 
8
 
for k in ('http_proxy', 'https_proxy', 'HTTP_PROXY', 'HTTPS_PROXY'):
9
 
    if k in os.environ:
10
 
        del os.environ[k]
11
 
 
12
 
os.execvpe(sys.argv[1], sys.argv[1:], os.environ)