wireless-regdb/tests/scripts/run_tests.sh
Michal Schmidt 51d78b5d72 Copy gating config from the crda package
... and adjust it for RHEL-9.
Needed to pass gating tests to be able to fix this:
Resolves: rhbz#1997398
2021-11-22 11:11:27 +01:00

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...