test.init 176 B

1234567891011
  1. #!/bin/sh
  2. #PKG adk-test-tools
  3. #INIT 90
  4. [[ $1 = autostart ]] || exit 0
  5. echo "Starting test script ..."
  6. if [ -x /run.sh ];then
  7. exec /run.sh
  8. else
  9. echo "no run.sh found"
  10. fi
  11. quit