View Single Post
Old 11-05-2006, 03:19 AM   #84
scotty1024
Banned
scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.scotty1024 is no ebook tyro.
 
Posts: 1,300
Karma: 1479
Join Date: Jul 2006
Location: Peoples Republic of Washington
Device: Reader / iPhone / Librie / Kindle
Quote:
Originally Posted by Henry Loenwind
Code:
#!/bin/sh

if test -f /mnt/free/startup.sh
then
  /bin/sh /mnt/free/startup.sh
fi
if test -f /mnt/card/startup.sh
then
  /bin/sh /mnt/card/startup.sh
fi
Since your script never exits you need to add a &:

Code:
#!/bin/sh

if test -f /mnt/free/startup.sh
then
  /bin/sh /mnt/free/startup.sh &
fi
if test -f /mnt/card/startup.sh
then
  /bin/sh /mnt/card/startup.sh
fi
Otherwise the rc script hangs.
scotty1024 is offline   Reply With Quote