10 lines
128 B
Bash
Executable File
10 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This is a simple sanity test to satisfy the RHEL8.1 onboard gating
|
|
# requirement.
|
|
|
|
osmtest -p
|
|
ret=$?
|
|
|
|
exit $ret
|