Re: Paste what you have on copy
if $(grep -q public /etc/snmpdv3.conf )
then
while (true)
do
isgr_info_msg "$routine" 0 "Please enter new community name"
read Commu_Name
[ -n "$Commu_Name" ] && break
done
else
isgr_info_msg "$routine" 0 "Public community name not used - No need to
change"
return 0
fi
|