51d78b5d72
... and adjust it for RHEL-9. Needed to pass gating tests to be able to fix this: Resolves: rhbz#1997398
12 lines
220 B
Bash
Executable File
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...
|