summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-03 20:43:46 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-03 20:43:46 +0200
commitaa4a7caf98ecad31c5a83e60ad586a2cd3da8483 (patch)
tree973cd795d96394ee9a378b1e16342c2217e787e2 /examples
parent07789725a97de5879bca0c37242ec7b7c96aa270 (diff)
downloadbiruda-aa4a7caf98ecad31c5a83e60ad586a2cd3da8483.tar.gz
biruda-aa4a7caf98ecad31c5a83e60ad586a2cd3da8483.tar.bz2
fixed gold building image into a standalone example
Diffstat (limited to 'examples')
-rw-r--r--examples/build_gold_image/biruda.conf26
1 files changed, 21 insertions, 5 deletions
diff --git a/examples/build_gold_image/biruda.conf b/examples/build_gold_image/biruda.conf
index 261230b..6dd9199 100644
--- a/examples/build_gold_image/biruda.conf
+++ b/examples/build_gold_image/biruda.conf
@@ -1,16 +1,25 @@
# example of a gold image build
# (on ArchLinux, building a RHEL6 image)
+master
+{
+ control = "tcp://*:5555"
+
+ data = "tcp://*:5556"
+
+ spool_dir = "."
+}
+
coordinator
{
- control = "tcp://eeepc:5555"
+ control = "tcp://localhost:5555"
}
worker example_build_gold
{
- control = "tcp://eeepc:5555"
+ control = "tcp://localhost:5555"
- data = "tcp://eeepc:5556"
+ data = "tcp://localhost:5556"
execution = direct
@@ -19,11 +28,18 @@ worker example_build_gold
worker example_run
{
- control = "tcp://eeepc:5555"
+ control = "tcp://localhost:5555"
- data = "tcp://eeepc:5556"
+ data = "tcp://localhost:5556"
execution = direct
command = "/bin/chroot rhel6-x64 /bin/bash -c '/bin/cat /etc/redhat-release'"
}
+
+webserver
+{
+ threads = 4
+ host = localhost
+ port = 8080
+}