#!/bin/sh
#
# /etc/init.d/smartaccess  --  script to stop smartaccess connection.


case "$1" in
    start)
        echo "Starting SmartAccess: Nothing to do."
        ;;
    stop)
        echo -n "Stopping SmartAccess"
        killall ssh
        echo "."
        ;;
    restart)
        $0 stop
        $0 start
        ;;
    *)
        echo "Usage: /etc/init.d/smartaccess {start|stop|restart}"
        exit 1
        ;;
esac

exit 0

