Checked bugs
- Bug #78565
: CREAM CE and truncation of Arguments
- Submitted the following JDL:
executable="printargs.sh";
Arguments = "-V 'lhcb' '/DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=romanov/CN=427293/CN=Vladimir Romanovskiy' -o /Resources/Computing/CEDefaults/PilotType=private";
inputsandbox = {"printargs.sh"};
stdoutput = "outout";
outputsandbox = {"outout"};
outputsandboxbasedesturi="gsiftp://localhost";
with printargs.sh equal to:
#!/bin/sh
echo "1st: $1"
echo "2nd: $2"
echo "3rd: $3"
echo "4th: $4"
echo "5th: $5"
The resulting outout file is now:
1st: -V
2nd: lhcb
3rd: /DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=romanov/CN=427293/CN=Vladimir Romanovskiy
4th: -o
5th: /Resources/Computing/CEDefaults/PilotType=private
In the buggy version it was:
1st: -V
2nd: 'lhcb'
3rd: '/DC=ch/DC=cern/OU=Organic
4th: Units/OU=Users/CN=romanov/CN=427293/CN=Vladimir
5th: Romanovskiy'
|