Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@devel.trisquel.info>2012-12-20 00:14:49 (GMT)
committer root <root@devel.trisquel.info>2012-12-20 00:14:49 (GMT)
commit7df80c42607407da595a49751c8c7231f9b243f6 (patch)
tree269e589c1ba8ac089dcacaa9978865af32d723c7
parent5674dc6b9516ff697f827d6097e5d0337a2f6a0d (diff)
Fix problems with yum using proxy. Closes sxdo#2641test-oob
-rw-r--r--modules/x11/kspost.90.tweaks.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/x11/kspost.90.tweaks.inc b/modules/x11/kspost.90.tweaks.inc
index efa2cec..aa2f078 100644
--- a/modules/x11/kspost.90.tweaks.inc
+++ b/modules/x11/kspost.90.tweaks.inc
@@ -55,9 +55,9 @@ def main():
use_auth = client.get_bool('%s/use_authentication' % sys_dir)
if use_auth is True:
auth_user = client.get_string('%s/authentication_user' % sys_dir)
- yumtmp.write('proxy_username %s\n' % auth_user)
+ yumtmp.write('proxy_username=%s\n' % auth_user)
auth_pass = client.get_string('%s/authentication_password' % sys_dir)
- yumtmp.write('proxy_password %s\n' % auth_pass)
+ yumtmp.write('proxy_password=%s\n' % auth_pass)
else:
pass
yumtmp.close()