#!/bin/sh
verbose=0
toggle=0
args=$*
while getopts vVnq:c:P:e:D:l: opt
do
	case $opt in
		V) echo $Id: vmoduser_handle.in,v 2.2 2017-03-31 02:40:34+05:30 Cprogrammer Exp mbhangui $;;
		v) verbose=1;;
		n) toggle=1;;
		q) quota="$OPTARG";;
		c) gecos="$OPTARG";;
		P) passwd="$OPTARG";;
		e) epasswd="$OPTARG";;
		l) vacation_file="$OPTARG";;
		?) exit 1;;
	esac
done
if [ -n "$passwd" -o -n "$epasswd" ] ; then
	/usr/bin/svc -h /service/inlookup.infifo
fi
shift $((OPTIND-1))
# now do something with $@
if [ $verbose -ne 0 ] ; then
	/usr/bin/vuserinfo $@
fi
