File: panicsel-c.sh

package info (click to toggle)
ipmiutil 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,992 kB
  • sloc: ansic: 73,406; sh: 15,281; cpp: 2,245; makefile: 520
file content (19 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ABAT test for panicsel component utilities
# tag: rh71__build
# util=/usr/share/panicsel/showsel
util=/usr/sbin/isel
echo "panicsel component, basic acceptance test"
if [ ! -f $util ]
then
   echo "%%FAILURE%%"
   exit 1
fi
$util >/dev/null 2>&1
if [ $? -eq 0 ]
then
   echo "%%SUCCESS%%"
   exit 0
else
   echo "%%FAILURE%%"
   exit 1
fi