From d84bc081ef384325d9f05c8fa785e9a683ae3f74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Thu, 31 Jan 2013 16:03:31 +0100 Subject: [PATCH] - disable keyring usage by default --- NEWS | 1 + osc/conf.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 1aa11185..e4037a81 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,7 @@ - submitrequest: old not anymore used maintenance code got removed. It is possible now to create one request to submit all changed packages of an project in one request. Just run "osc sr" in the checked out project directory. + - disable keyring usage by default. print warning about misconfigured keyrings. 0.137 - support single binary download via getbinaries command diff --git a/osc/conf.py b/osc/conf.py index 19039d49..b8103464 100644 --- a/osc/conf.py +++ b/osc/conf.py @@ -112,8 +112,8 @@ DEFAULTS = {'apiurl': 'https://api.opensuse.org', 'verbose': '1', 'traceback': '0', 'post_mortem': '0', - 'use_keyring': '1', - 'gnome_keyring': '1', + 'use_keyring': '0', + 'gnome_keyring': '0', 'cookiejar': '~/.osc_cookiejar', # fallback for osc build option --no-verify 'no_verify': '0',