Comment 2 for bug 241840

Revision history for this message
Ian Ellis (ianmailstuff) wrote :

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.