#!/bin/sh

echo "CV: Cleanup /mnt/drives directory!"

# Action
case "$1" in
    start)
        rm -r /mnt/drives/mmc*
	rm -r /mnt/drives/sd*
	;;
    stop)
        ;;
    restart)
        ;;
    *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
        ;;
esac

exit 0
