#!/bin/sh
# $Log: vdeluser_handle.in,v $
# Revision 2.3  2023-07-31 21:52:29+05:30  Cprogrammer
# cd to root before doing svc -h
#
# Revision 2.2  2023-03-20 10:35:26+05:30  Cprogrammer
# use SERVICEDIR env variable if set for service directory
#
# Revision 2.1  2017-12-03 16:21:51+05:30  Cprogrammer
# post handle script for vdeluser
#
#
# $Id: vdeluser_handle.in,v 2.3 2023-07-31 21:52:29+05:30 Cprogrammer Exp mbhangui $
#
# send sighup to inlookup
if [ -n "$SERVICEDIR" ] ; then
	servicedir=$SERVICEDIR
else
	servicedir=/service*
fi
cd /
exec /usr/bin/svc -h $servicedir/inlookup.*
