#!/bin/sh # # Harry Hoffman # # **************************************************************************** # Service definition section. # **************************************************************************** service="DiskSuite" servfil="install-disksuite.vfy" #----------------------------------------------------------------------------- servhdr_txt=" Description of Service or Function: Solstice DiskSuite provides logical volume management under Solaris. Rationale for Verification Check: Ensure that SDS is installed and configured on the system. Determination of Compliance: This script determines if SDS is installed, configured or running on the system. This script will indicate a failure if the software is not installed or configured on the system. " #----------------------------------------------------------------------------- servpkg=" SUNWmdr SUNWmdu SUNWmdx " #----------------------------------------------------------------------------- servcfg=" ${JASS_ROOT_DIR}/etc/lvm/md.cf " #----------------------------------------------------------------------------- # **************************************************************************** # Check processing section. # **************************************************************************** start_verify "${servfil}" "${service}" "${servhdr_txt}" if check_os_min_revision 5.8 ; then logMessage "${JASS_MSG_SOFTWARE_INSTALLED}" if check_packageExists "$servpkg" 1 LOG ; then logMessage "\n${JASS_MSG_SOFTWARE_CONFIGURED}" check_serviceConfigExists "$servcfg" 1 LOG fi else logInvalidOSRevision "5.8 and later" fi finish_verify