Sha256: 4dcef9a2043a7382e439bde65905de23b2c3584504e9b175c3f0ae3b1f3505bc
Contents?: true
Size: 1.74 KB
Versions: 4
Compression:
Stored size: 1.74 KB
Contents
include "../modules/machine/machine.sfp" include "../modules/bonfire/bonfire.sfp" include "../modules/vm/vm.sfp" include "../modules/apache/apache.sfp" include "../modules/mysql/mysql.sfp" master isa Machine { sfpAddress is "localhost" bonfireEPCC isa Bonfire { experiment is "autocloud" location is "uk-epcc" image_name is "BonFIRE Debian Squeeze 10G v5" wan_name is "BonFIRE WAN" } bonfireINRIA extends master.bonfireEPCC { location is "fr-inria" } bonfireHPLABS extends master.bonfireEPCC { location is "uk-hplabs" } } vm1 isa VM { created = true apache isa Apache { running is true is_load_balancer is true } in_cloud is master.bonfireEPCC } vm2 isa VM { created = true apache isa Apache { running is true } in_cloud is master.bonfireEPCC } vm3 extends vm2 vm4 extends vm2 vm5 extends vm2 vm6 extends vm2 vm7 extends vm2 //vm8 extends vm2 //vm9 extends vm2 vm10 isa VM { created = true mysql isa Mysql { running is true } in_cloud is master.bonfireEPCC } global { if vm1.apache.running = true then { vm2.apache.running = true vm3.apache.running = true vm4.apache.running = true vm5.apache.running = true vm6.apache.running = true vm7.apache.running = true //vm8.apache.running = true //vm9.apache.running = true } if vm2.apache.running = true then vm10.mysql.running = true if vm3.apache.running = true then vm10.mysql.running = true if vm4.apache.running = true then vm10.mysql.running = true if vm5.apache.running = true then vm10.mysql.running = true if vm6.apache.running = true then vm10.mysql.running = true if vm7.apache.running = true then vm10.mysql.running = true //if vm8.apache.running = true then vm10.mysql.running = true //if vm9.apache.running = true then vm10.mysql.running = true }
Version data entries
4 entries across 4 versions & 1 rubygems