TemporalBeing

Untitled

Oct 3rd, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. from buildbot.status import html
  2. from buildbot.status.web import authz
  3. authz_cfg=authz.Authz(
  4.     # change any of these to True to enable; see the manual for more
  5.     # options
  6.     gracefulShutdown = False,
  7.     forceBuild = True, # use this to test your slave once it is set up
  8.     forceAllBuilds = False,
  9.     pingBuilder = False,
  10.     stopBuild = False,
  11.     stopAllBuilds = False,
  12.     cancelPendingBuild = False,
  13. )
  14. c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg))
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment