Changes between Version 10 and Version 11 of Old/Documentation/OTG/ScriptsRepository/ExpFWD
- Timestamp:
- Nov 10, 2006, 8:05:17 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Old/Documentation/OTG/ScriptsRepository/ExpFWD
v10 v11 87 87 }}} 88 88 89 The perl-script shall only run when node is up. So, I think the right moment to run the perl-script is when the node is up and before the application starts. 90 Therefore, that is why the ruby script given in the Wiki page has something like: 91 {{{ 92 ..... 93 whenAllInstalled() {|node| 94 puts "run something..." 95 wait 30 96 allNodes.startApplications 97 wait 30 98 ...... 99 }}} 100 When you see the prompt of "run something....", it is the moment to run the perl script. 89 101 90 102 91 103 92 104 93