New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81625


Ignore:
Timestamp:
08/02/11 21:36:41 (4 years ago)
Author:
wsiegrist@…
Message:

Require credentials for all operations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/buildbot/master.cfg

    r81591 r81625  
    243243from buildbot.status import html 
    244244from buildbot.status.web import auth, authz 
     245from buildbot.status.web.auth import HTPasswdAuth 
     246htauth = HTPasswdAuth('htpasswd') 
    245247authz_cfg=authz.Authz( 
    246     # change any of these to True to enable; see the manual for more 
    247     # options 
    248     gracefulShutdown = False, 
    249     forceBuild = True, # use this to test your slave once it is set up 
    250     forceAllBuilds = False, 
    251     pingBuilder = False, 
    252     stopBuild = True, 
    253     stopAllBuilds = False, 
    254     cancelPendingBuild = False, 
     248    auth=htauth, 
     249    gracefulShutdown = 'auth', 
     250    forceBuild = 'auth', 
     251    forceAllBuilds = 'auth', 
     252    pingBuilder = 'auth', 
     253    stopBuild = 'auth', 
     254    stopAllBuilds = 'auth', 
     255    cancelPendingBuild = 'auth', 
    255256) 
    256257 
Note: See TracChangeset for help on using the changeset viewer.