This overlay configuration file changes the web, API, and boot server
authorMark Huang <mlhuang@cs.princeton.edu>
Tue, 28 Mar 2006 21:43:04 +0000 (21:43 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Tue, 28 Mar 2006 21:43:04 +0000 (21:43 +0000)
ports to (hopefully unused) ports so that the system can be
bootstrapped on a build machine that may itself be running a web
server.

bootstrap.xml [new file with mode: 0644]

diff --git a/bootstrap.xml b/bootstrap.xml
new file mode 100644 (file)
index 0000000..0016bf9
--- /dev/null
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<!DOCTYPE configuration PUBLIC "-//PlanetLab Central//DTD PLC configuration//EN" "configuration.dtd">
+
+<configuration>
+
+  <!-- This overlay configuration file changes the web, API, and boot
+       server ports to (hopefully unused) ports so that the system can
+       be bootstrapped on a build machine that may itself be running a
+       web server. -->
+
+  <variables>
+    <category id="plc_api">
+      <variablelist>
+       <variable id="port" type="int">
+         <value>10080</value>
+       </variable>
+      </variablelist>
+    </category>
+
+    <category id="plc_www">
+      <variablelist>
+       <variable id="port" type="int">
+         <value>10080</value>
+       </variable>
+
+       <variable id="ssl_port" type="int">
+         <value>10443</value>
+       </variable>
+      </variablelist>
+    </category>
+
+    <category id="plc_boot">
+      <variablelist>
+       <variable id="port" type="int">
+         <value>10080</value>
+       </variable>
+
+       <variable id="ssl_port" type="int">
+         <value>10443</value>
+       </variable>
+      </variablelist>
+    </category>
+  </variables>
+
+</configuration>