wireless-regdb/tests/scripts/run_tests.sh

12 lines
220 B
Bash
Executable File

#!/bin/bash
#
# Begin wih a very simple, "does the file exist?" check...
#
if [ ! -f /usr/lib/firmware/regulatory.db ]
then
exit 1 # no regulatory database installed, so fail
fi
exit 0 # got here? indicate success...