blob: 908702151f3f7812a8bace07c6301129f016e0bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#! /bin/sh
# ipmiutil ipmi_port setup script for systemd
#
. /usr/share/ipmiutil/ipmiutil.env
getpid () {
# This is messy if the parent script is same name as $1
p=`ps -ef |grep "$1" |grep -v grep |awk '{print $2}'`
echo $p
}
isetup() {
retval=1
PID=0
mkdir -p $IVARDIR
if [ ! -f $ISENSOROUT ]; then
# Capture a snapshot of IPMI sensor data for later reuse.
ipmiutil sensor -q >$ISENSOROUT
fi
if [ -f $ITHRESH ]
then
# apply saved IPMI sensor thresholds, if any
sh $ITHRESH
fi
if [ -d ${IMIBDIR} ]
then
# put bmclanpet MIB where SNMP can find it
cp -f $IDATADIR/bmclanpet.mib ${IMIBDIR}/BMCLAN-PET-MIB.txt
fi
dpc=`getpid dpcproxy`
if [ "x${dpc}" != "x" ]
then
echo "dpcproxy is already running on port 623, so not needed."
retval=6
else
# portmap may have been replaced by portreserve
[ -x $IPORTMAP ] || exit 6
retval=0
fi
return $retval
}
isetup
|