#!/bin/sh -e

case "$1" in
    remove|purge)
        /bin/rm -fvr /var/lib/grafana/plugins/grafana-solomon-datasource
    ;;
esac

