poniedziałek, 5 kwietnia 2010

UPS Powerware 5125 na linuxie - problem z instalacją.

podczas instalacji klienta UPSa powerware netwatch
instalator zgłaszał błąd wersji libc - „Your Libc version is not supported.”

Rozwiązanie
w skrypcie install.sh zmieniłem

case $7 in
2.3.)
case $7 in
2.3.0)
system=linux_i386
os_type=Linux (x86), Libc 2.3.x
;;
2.3.1)
system=linux_i386
os_type=Linux (x86), Libc 2.3.x
;;
2.3.2)
system=linux_i386
os_type=Linux (x86), Libc 2.3.x
;;
2.3.3)
system=linux_i386
os_type=Linux (x86), Libc 2.3.x
;;
)
os_type=Linux (x86), Libc 2.3.4 or higher
system=linux_el4
;;
esac
;;
2.4.)
os_type=Linux (x86), Libc 2.3.4 or higher
system=linux_el4
;;
2.4)
os_type=Linux (x86), Libc 2.3.4 or higher
system=linux_el4
;;
2.5)
os_type=Linux (x86), Libc 2.3.4 or higher
system=linux_el4
;;
2.9)
os_type=Linux (x86), Libc 2.3.4 or higher
system=linux_el4
;;
)
INSTALL_ERR_MSG=
INSTALL_ERR_MSG= Your Libc version is not supported.
;;
esac
Po dodaniu weryfikacji biblioteki w wersji 2.9* - instalator poprawnie przechodzi dalej.

Brak komentarzy: