Actions
Bug #7252
closedkatello-disconnected does not function behind a http proxy
Description
Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1040112
There are various places in the katello-disconnected codebase that do not properly include configuration options to support running behind an http proxy.
This means that anyone using katello-disconnected to sync and setup content will not be able to utilize the tool until this bug is resolved.
We need the following:
1) Configuration options for the 'katello-disconnected setup' command. It will need:
- katello-disconnected setup --help
Usage: setup [--option VALUE]
--host PULP_HOSTNAME Pulp host (default "localhost")
...
--proxy-url=PROXY_URL
--proxy-port=PROXY_PORT
--proxy-user=PROXY_USER
HTTP Proxy user (proxy username, if auth is required)
--proxy-pass=PROXY_PASS
HTTP Proxy pass (proxy password, if auth is required)
2) Update any network access calls to pass in the configuration options
Actions