#!/bin/sh

yum update -y imunify360-unified-access-logger
EXITVALUE=$?
if [ $EXITVALUE -ne 0 ]; then
    /usr/bin/logger -t imunify360-unified-access-logger "ALERT update exited abnormally with [$EXITVALUE]"
fi
exit 0