mipagent revision 7c478bd95313f5f23a4c958a745db2134aa03244
1037N/A#!/sbin/sh
1037N/A#
1037N/A# CDDL HEADER START
1037N/A#
1037N/A# The contents of this file are subject to the terms of the
1037N/A# Common Development and Distribution License, Version 1.0 only
1037N/A# (the "License"). You may not use this file except in compliance
1037N/A# with the License.
1037N/A#
1037N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1037N/A# or http://www.opensolaris.org/os/licensing.
1037N/A# See the License for the specific language governing permissions
1037N/A# and limitations under the License.
1037N/A#
1037N/A# When distributing Covered Code, include this CDDL HEADER in each
1037N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1037N/A# If applicable, add the following below this CDDL HEADER, with the
1037N/A# fields enclosed by brackets "[]" replaced with your own identifying
1037N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1037N/A#
1037N/A# CDDL HEADER END
1037N/A#
1037N/A#
1037N/A# ident "%Z%%M% %I% %E% SMI"
1037N/A#
1037N/A# Copyright (c) 1999 by Sun Microsystems, Inc.
1037N/A# All rights reserved.
1037N/A#
1037N/A
1037N/Acase "$1" in
1037N/A'start')
1037N/A [ -f /etc/inet/mipagent.conf ] && /usr/lib/inet/mipagent >/dev/msglog 2>&1 &
1037N/A ;;
1037N/A'stop')
1037N/A /usr/bin/pkill -x -u 0 -P 1 mipagent
1037N/A ;;
1037N/A*)
1037N/A echo "Usage: $0 { start | stop }"
1037N/A exit 1
1037N/A ;;
1037N/Aesac
1037N/Aexit 0
1037N/A