#!/usr/local/bin/bash
if [ `whoami` != root ]
then 
echo "** Error!! "  
echo "Must be root to stop this demo!!!!"
else 
cd driver
modunload -n policy > /dev/null 2>&1
echo "*****************"
echo "Driver unloaded.  Demo stopped."
echo 
echo "Run bin/start_demo to restart"
echo "Run bin/end_demo to end"
echo "*****************" 
fi
