1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 09:16:16 +02:00

- added support to specify a default action if a submitrequest has been accepted

This commit is contained in:
Marcus Huewe 2009-12-19 14:44:51 +01:00
parent b983f116eb
commit 0bf48f2b73
2 changed files with 7 additions and 1 deletions

View File

@ -686,7 +686,7 @@ class Osc(cmdln.Cmdln):
opts.days = conf.config['request_list_days']
return self.do_request('list', opts, *args)
src_update = None
src_update = conf.config['submitrequest_on_accept_action'] or None
# we should check here for home:<id>:branch and default to update, but that would require OBS 1.7 server
if opts.cleanup:
src_update = "cleanup"

View File

@ -106,6 +106,8 @@ DEFAULTS = { 'apiurl': 'https://api.opensuse.org',
'check_filelist': '1',
# check for pending requests after executing an action (e.g. checkout, update, commit)
'check_for_request_on_action': '0',
# what to do with the source package if the submitrequest has been accepted
'submitrequest_on_accept_action': '',
'linkcontrol': '0',
# Maintenance defaults to OBS instance defaults
@ -190,6 +192,10 @@ apiurl = %(apiurl)s
# check for pending requests after executing an action (e.g. checkout, update, commit)
#check_for_request_on_action = 0
# what to do with the source package if the submitrequest has been accepted. If
# nothing is specified the API default is used
#submitrequest_on_accept_action = cleanup|update|noupdate
[%(apiurl)s]
user = %(user)s
pass = %(pass)s