#!/bin/bash

echo "smartupdate supersedes hpsum. Future versions will not include hpsum"
echo "Calling smartupdate"
if [ "$0" == "/sbin/hpsum" -o "$0" == "/usr/sbin/hpsum" ]; then
	smartupdate "$@"
else	
	sh ./smartupdate "$@"
fi

exit $?
