summaryrefslogtreecommitdiff
path: root/examples/build_gold_image/biruda.conf
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-12-07 20:20:41 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2014-12-07 20:20:41 +0100
commit2546f1aab108268768c7a2fae1d00e047b71336c (patch)
treed18732f3e9c8b82a5ef8af5e38de4740b22ecba8 /examples/build_gold_image/biruda.conf
parente1c99bfd56ea23e1f18bc4c0a0a0a0ef2055e368 (diff)
downloadbiruda-2546f1aab108268768c7a2fae1d00e047b71336c.tar.gz
biruda-2546f1aab108268768c7a2fae1d00e047b71336c.tar.bz2
added gold build example
Diffstat (limited to 'examples/build_gold_image/biruda.conf')
-rw-r--r--examples/build_gold_image/biruda.conf29
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/build_gold_image/biruda.conf b/examples/build_gold_image/biruda.conf
new file mode 100644
index 0000000..f131699
--- /dev/null
+++ b/examples/build_gold_image/biruda.conf
@@ -0,0 +1,29 @@
+# example of a gold image build
+# (on ArchLinux, building a RHEL6 image)
+
+coordinator
+{
+ control = "tcp://eeepc:5555"
+}
+
+worker example_build_gold
+{
+ control = "tcp://eeepc:5555"
+
+ data = "tcp://eeepc:5556"
+
+ execution = direct
+
+ command = "/bin/sh ./build.sh"
+}
+
+worker example_run
+{
+ control = "tcp://eeepc:5555"
+
+ data = "tcp://eeepc:5556"
+
+ execution = direct
+
+ command = "/bin/chroot rhel6-x64 /bin/bash -c '/bin/cat /etc/redhat-release'"
+}