chidori has asked for the wisdom of the Perl Monks concerning the following question:
I have a requirement to create a CGI page , where i have to execute a set of perl scripts in sequence.
If A,B,C,D are the perl scripts to be executed in sequence. 'B' should be started only if 'A' script succeeds.| SCRIPT_NAME | STATUS | LOG |
|---|---|---|
| A | Success | click_here |
| B | Inprogress | Inprogress |
Apache server is setup in such a way , anyone who runs the script , it will executed as one common user. So there won't be a problem of permissions.
Other than this , to my knowledge , I don't see any other issue that I have to address. But my instincts say there might be few other things that i am missing .
Can someone please give me some heads up on this.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI page to ssh to another host and trigger a perl script and return back the response
by choroba (Cardinal) on Jun 29, 2014 at 08:03 UTC | |
by chidori (Novice) on Jun 29, 2014 at 15:46 UTC |