#!/bin/sh

case "$1" in
    restore-defaults)
        echo "Removing local configurations"
        # Add your own custom logic to reset configurations here...
        # NOTE: Needed only for configuration data and state not covered by
        #       UCI
        ;;
    *)
        echo "Nothing to do..."
        ;;
esac
