New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80191


Ignore:
Timestamp:
07/06/11 08:37:47 (4 years ago)
Author:
wsiegrist@…
Message:

Allow for non-production usage on not-80/tcp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/buildbot/master.cfg

    r80190 r80191  
    202202    cancelPendingBuild = False, 
    203203) 
    204 c['status'].append(html.WebStatus(http_port=80, authz=authz_cfg)) 
    205204 
    206205####### PROJECT IDENTITY 
     
    213212c['titleURL'] = "http://www.macports.org/" 
    214213 
    215 # the 'buildbotURL' string should point to the location where the buildbot's 
    216 # internal web server (usually the html.WebStatus page) is visible. This 
    217 # typically uses the port number set in the Waterfall 'status' entry, but 
    218 # with an externally-visible host name which the buildbot cannot figure out 
    219 # without some help. 
    220  
    221 c['buildbotURL'] = "http://build.macports.org/" 
     214if production: 
     215    c['buildbotURL'] = "http://build.macports.org/" 
     216    c['status'].append(html.WebStatus(http_port=80, authz=authz_cfg)) 
     217else: 
     218    c['buildbotURL'] = "http://localhost:8010/" 
     219    c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg)) 
    222220 
    223221####### DB URL 
Note: See TracChangeset for help on using the changeset viewer.