#!/bin/bash

# This script is called when the NSM instance goes idle for a resource. The
# resource identifier is passed as the first parameter
#
# NOTE: This script should execute as quickly as possible as it is called on
# NSM's execution thread.  If the script does not return in a timely fashion
# (less than 5 seconds), NSM's watchdog will declare a hung process and abort
# operation.

set -e
# Stop your processes here
exit 0