torque/tests/sanity.sh
Kamal Heib 50a075e08c torque: add basic sanity test for CI gating
Resolves: RHEL-70711

Signed-off-by: Kamal Heib <kheib@redhat.com>
2024-12-26 07:00:36 -05:00

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