50a075e08c
Resolves: RHEL-70711 Signed-off-by: Kamal Heib <kheib@redhat.com>
15 lines
185 B
Bash
Executable File
15 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This is a simple sanity test to satisfy the RHEL8.1 onboard gating
|
|
# requirement.
|
|
|
|
ret=0
|
|
|
|
trqauthd --help
|
|
let ret=$ret+$?
|
|
|
|
hostn -v localhost
|
|
let ret=$ret+$?
|
|
|
|
exit $ret
|