#!/bin/sh
# SYSTEMS: Solaris
# This script is used to check if tracking of attempts by users to use the 
# 'su' command is enabled.
MSG="# Checking for '/var/adm/sulog' file to track the use of 'su'..."
SYSTEM=`uname -s`
######Solaris######
if [ "$SYSTEM" = "SunOS" ]; then
  echo ""; echo "$MSG"
  SULOG=/var/adm/sulog
  if [ ! -f ${SULOG} ]; then
    echo "--INFO-- [SULOG001i] The file, $SULOG does NOT exist."
  fi
fi


