Rev 49: Define different servers for devs and public. in file:///home/vila/buildbot/bzr/

Vincent Ladeuil v.ladeuil+lp at free.fr
Wed Aug 12 20:22:51 BST 2009


At file:///home/vila/buildbot/bzr/

------------------------------------------------------------
revno: 49
revision-id: v.ladeuil+lp at free.fr-20090812192250-6609vlsuyqtfvwtj
parent: babune at karmic64-20090810170625-i4r71jnjm5yk9m0w
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: bzr
timestamp: Wed 2009-08-12 21:22:50 +0200
message:
  Define different servers for devs and public.
  
  * master/master.cfg:
  (status): Define two servers, one for public, one for devs.
  
  * README: 
  Fix typo in karmic description.
-------------- next part --------------
=== modified file 'README'
--- a/README	2009-08-10 16:49:12 +0000
+++ b/README	2009-08-12 19:22:50 +0000
@@ -129,7 +129,7 @@
 * karmic 64 bits slave created with
 
     mkdir -p slaves/karmic
-    buildbot create-slave slaves/larmic localhost:9989 hardy heron
+    buildbot create-slave slaves/karmic localhost:9989 karmic koala
 
   Note that we use an ssh tunnel to forward the connection to the
   build master (see below) so we appear to connect locally.

=== modified file 'TODO'
--- a/TODO	2009-08-10 16:49:12 +0000
+++ b/TODO	2009-08-12 19:22:50 +0000
@@ -25,4 +25,3 @@
 
 * make pqm depends on buildbot once we have an official master
    and enough slaves
-

=== modified file 'master/master.cfg'
--- a/master/master.cfg	2009-08-10 16:49:12 +0000
+++ b/master/master.cfg	2009-08-12 19:22:50 +0000
@@ -223,9 +223,13 @@
 c['status'] = []
 
 from buildbot.status import html
-c['status'].append(html.WebStatus(http_port=8010,
-                                  # FIXME: Not reliable for external users
+# The public web server
+c['status'].append(html.WebStatus(http_port=8010,))
+# The private web server intended to be used by responsible developers who
+# promised to never abuse the system by forcing random builds :)
+c['status'].append(html.WebStatus(http_port=8011,
                                   allowForce=True,
+                                  password='tagada'
                                   ))
 
 # from buildbot.status import mail
@@ -277,4 +281,4 @@
 # with an externally-visible host name which the buildbot cannot figure out
 # without some help.
 
-c['buildbotURL'] = "http://saw.local:8010/"
+# c['buildbotURL'] = "http://babune.ladeuil.net:8010/"



More information about the bazaar-commits mailing list