1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00

- disable keyring usage by default

This commit is contained in:
Adrian Schröter 2013-01-31 16:03:31 +01:00
parent 4e0fb4cbeb
commit d84bc081ef
2 changed files with 3 additions and 2 deletions

1
NEWS
View File

@ -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

View File

@ -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',