#!/bin/sh

/opt/xensource/libexec/license-check.py

EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
    /usr/bin/logger -t license-check "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0
