Changes between Version 8 and Version 9 of Tutorial/HowToSwitch
- Timestamp:
- Jan 11, 2013, 10:19:29 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorial/HowToSwitch
v8 v9 21 21 22 22 {{{ 23 omf tell onall23 omf tell -a on -t all 24 24 # will turn On the entire set of 20x20 nodes on the 'grid' 25 25 26 omf tell offs [[3,1],[5,6],[1,1..2]]26 omf tell -a offs -t node3-1.domain,node5-6.domain,node1-1.domain,node1-2.domain 27 27 # will turn Off (soft) the nodes 3,1 and 5,6 and 1,1 and 1,2 28 29 omf tell offh system:topo:circle30 # will turn Off (hard) the nodes in the topology file 'repository/system/topo/circle.rb'31 32 omf tell on mytopo33 # will turn On the nodes in the topology file './mytopo.rb'34 28 }}} 35 29