Installation guide
Configuration Changes From Previous Release
237
+PIDFILE=/var/run/tog-pegasus/cimserver.pid
. /etc/rc.d/init.d/functions
[ -e /etc/sysconfig/tog-pegasus ] && . /etc/sysconfig/tog-pegasus;
@@ -75,6 +77,7 @@
success;
else
failure;
+ RETVAL=7
fi
echo
;;
@@ -86,8 +89,16 @@
echo -n $"CIM server ($pid) is running";
RETVAL=0
else
- echo -n $"CIM server is not running";
- RETVAL=3
+ if [ -e $PIDFILE ]; then
+ echo -n $"CIM server is not running and pid file exists";
+ RETVAL=1
+ elif [ -e $LOCKFILE ] || [ -e $LOCKFILE2 ]; then
+ echo -n $"CIM server is not running and lock file exists";
+ RETVAL=2
+ else
+ echo -n $"CIM server is not running";
+ RETVAL=3
+ fi
fi
echo
;;
udev-095-14.16.el5.i386.rpm: /etc/udev/rules.d/50-udev.rules
---
+++
@@ -174,7 +174,7 @@
KERNEL=="mice", NAME="input/%k"
KERNEL=="mouse*", NAME="input/%k"
-KERNEL=="event*", SYSFS{idVendor}=="03f0", SYSFS{device/
interface}=="Virtual Mouse", SYSFS{device/bInterfaceProtocol}=="02",
NAME="input/%k", SYMLINK+="input/hp_ilo_mouse"
+KERNEL=="event*", SYSFS{idVendor}=="03f0", SYSFS{device/
interface}=="Virtual Mouse", SYSFS{device/bInterfaceProtocol}=="02",
SYMLINK+="input/hp_ilo_mouse"
KERNEL=="event*", NAME="input/%k"
KERNEL=="js*", NAME="input/%k", SYMLINK+="%k"
@@ -220,13 +220,6 @@
KERNEL=="pcd[0-9]*", SYMLINK+="cdrom cdrom-%k"
KERNEL=="fd[0-9]*", SYMLINK+="floppy floppy-%k"