#!/bin/sh
#
# $Log: vpasswd_handle.in,v $
# Revision 2.4  2023-07-31 21:52:55+05:30  Cprogrammer
# cd to root before doing svc -h
#
# Revision 2.3  2023-03-20 10:38:25+05:30  Cprogrammer
# use SERVICEDIR env variable if set for service directory
#
# Revision 2.2  2017-03-31 00:41:38+05:30  Cprogrammer
# use autoconf variable substitution
#
# Revision 2.1  2017-03-30 23:28:17+05:30  Cprogrammer
# added vpasswd handle script
#
#
# $Id: vpasswd_handle.in,v 2.4 2023-07-31 21:52:55+05:30 Cprogrammer Exp mbhangui $
if [ -n "$SERVICEDIR" ] ; then
	servicedir=$SERVICEDIR
else
	servicedir=/service*
fi
cd /
/usr/bin/svc -h $servicedir/inlookup.infifo
ret=$?
/usr/bin/vuserinfo $1
exit $ret
