On RHEL6.2,
A script with an nfs executable path that is more than 80 chars long fails to execute because the path is being truncated.
For example,
a script test.sh
#!/path/to/something/executable/that/is/more/than/80/chars/fails
echo "test"
is truncated to:
#!/path/to/something/executable/that/is/78/chars
A small nfs path runs fine with the same executable.