So, I have this code snippet in the script now, starting at line 1873:
if [ "$Use_SU" = "true" ];
then
su - $RunAsUser -c "$BashShell -c \"cd $Fdir/$Dir$CurrentCPU/; ./fah6 < /dev/null > /dev/null 2>&1 &\""
else
cd $Fdir/$Dir$CurrentCPU/; ./fah6 < /dev/null > /dev/null 2>&1 &
fi
I believe it originally read:
if [ "$Use_SU" = "true" ];
then
su - $RunAsUser -c "$BashShell -c \"cd $Fdir/$Dir$CurrentCPU/; ./FaH < /dev/null > /dev/null 2>&1 &\""
else
cd $Fdir/$Dir$CurrentCPU/; ./FaH < /dev/null > /dev/null 2>&1 &
fi
I just changed where it was calling FaH to call fah6. I hope that helps.
So, I have this code snippet in the script now, starting at line 1873:
if [ "$Use_SU" = "true" ]; Dir$CurrentCPU/ ; ./fah6 < /dev/null > /dev/null 2>&1 &\"" Dir$CurrentCPU/ ; ./fah6 < /dev/null > /dev/null 2>&1 &
then
su - $RunAsUser -c "$BashShell -c \"cd $Fdir/$
else
cd $Fdir/$
fi
I believe it originally read: Dir$CurrentCPU/ ; ./FaH < /dev/null > /dev/null 2>&1 &\"" Dir$CurrentCPU/ ; ./FaH < /dev/null > /dev/null 2>&1 &
if [ "$Use_SU" = "true" ];
then
su - $RunAsUser -c "$BashShell -c \"cd $Fdir/$
else
cd $Fdir/$
fi
I just changed where it was calling FaH to call fah6. I hope that helps.