Changes between Version 10 and Version 11 of Old/Documentation/OTG/ScriptsRepository/ExpFWD


Ignore:
Timestamp:
Nov 10, 2006, 8:05:17 PM (17 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/Documentation/OTG/ScriptsRepository/ExpFWD

    v10 v11  
    8787}}}
    8888
     89The 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.
     90Therefore, that is why the ruby script given in the Wiki page has something like:
     91{{{
     92.....
     93whenAllInstalled() {|node|
     94puts "run something..."
     95  wait 30
     96allNodes.startApplications
     97  wait 30
     98......
     99}}}
     100When you see  the prompt of "run something....", it is the moment to run the perl script.
    89101
    90102
    91103
    92104
    93