I have a single-task workflow, where the task is a CGI.
The CGI is, in turn, making a unix system call:
my $ant_cmd = "/cust/iw-home/tools/ant/bin/ant -f $build_file $build_command 2>&1";
my $ant_output;
I was expecting this CGI and the system call to both be executed as the TeamSite user...
...instead the system call is being executed by iwui which does not have sufficient permissions.
I guess I could make all of the script output files writeable by iwui, but I'd MUCH prefer to get the script to execute as the user.
Is there a way to do this?