# example of a gold image build # (on ArchLinux, building a RHEL6 image) master { control = "tcp://*:5555" data = "tcp://*:5556" spool_dir = "." } coordinator { control = "tcp://localhost:5555" } worker example_build_centos6 { control = "tcp://localhost:5555" data = "tcp://localhost:5556" execution = direct command = "/bin/sh ./build_centos6.sh ${ARCH}" } worker example_uname_centos6 { control = "tcp://localhost:5555" data = "tcp://localhost:5556" execution = direct command = "/bin/chroot rhel6-${ARCH} /bin/bash -c '/bin/cat /etc/redhat-release && /bin/uname -m'" } worker example_build_archlinux { control = "tcp://localhost:5555" data = "tcp://localhost:5556" execution = direct command = "/bin/sh ./build_archlinux.sh ${ARCH}" } worker example_uname_archlinux { control = "tcp://localhost:5555" data = "tcp://localhost:5556" execution = direct command = "/bin/chroot archlinux-${ARCH} /bin/bash -c '/bin/cat /etc/arch-release && /bin/uname -m'" } webserver { threads = 4 host = localhost port = 8080 }