Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

On Debian/Ubuntu systems, the proxy is not being set early enough. #483

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions lib/beaker/hypervisor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,17 @@ def configure
if @options[:add_el_extras]
add_el_extras(@hosts, @options)
end
if @options[:package_proxy]
package_proxy(@hosts, @options)
end
if @options[:disable_iptables]
disable_iptables @hosts, @options
end
end

#Default validation steps to be run for a given hypervisor
def validate
if @options[:package_proxy]
package_proxy(@hosts, @options)
@options.delete(:package_proxy)
end
if @options[:validate]
validate_host(@hosts, @options)
end
Expand Down