#!/bin/bash

if [ "$(id -u)" != "0" ]
then
	echo $STRING_APPEND "This script must be run as root."
	exit 1
fi

# Kill all Cisco processes when the user logs out.
killall pidrun.sh
killall run_vxc.sh
killall vxc
killall cchwg
killall -9 LogMeUp

echo "Unified Communications Stopped."
