#!/bin/sh

#
#    Copyright (c) 2013 NetApp, Inc.
#    All rights reserved.
#
#    This document is the property of NetApp. It is considered 
#    confidential and proprietary information.
#
#    This document may not be reproduced or transmitted in any form,
#    in whole or in part, without the express written permission of
#    NetApp.
#
#    Description:
#      This file implements a script to respond to the 
#      acpp_cli command: "toggle_discovery_debug"
#

echo  "Toggling debug messages in discovery."
kill -SIGUSR2 `pidof acp_discovery`

exit 0

