summaryrefslogtreecommitdiff
path: root/package/adk-test-tools/files/test.init
blob: 81095fa39fb1ee10aab9471424e520ef2a5d2ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#PKG adk-test-tools
#INIT 90
[[ $1 = autostart ]] || exit 0
echo "Starting test script ..."
if [ -x /run.sh ];then
	exec /run.sh
else
	echo "no run.sh found"
fi
quit