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

Fixes yum proxy configuration bug #1598

Merged
merged 7 commits into from Mar 21, 2018
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGES.next.md
Expand Up @@ -123,3 +123,4 @@
- Support installing azure-cli on RedHat systems.
- Fixed default behavior of using /usr/bin/time --quiet on all commands
- Fixed ycsb failure when the same workload is ran more than once.
- Fixed yum proxy config bug (GH-#1598 from @kopecpiotr)
2 changes: 1 addition & 1 deletion perfkitbenchmarker/linux_virtual_machine.py
Expand Up @@ -991,7 +991,7 @@ def SetupProxy(self):
yum_proxy_file = '/etc/yum.conf'

if FLAGS.http_proxy:
self.RemoteCommand("echo -e 'proxy= \"%s\";' | sudo tee -a %s" % (
self.RemoteCommand("echo -e 'proxy= %s' | sudo tee -a %s" % (
FLAGS.http_proxy, yum_proxy_file))


Expand Down