Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()