debugging info for the intermittant multiple recipient problem on linux

This commit is contained in:
sonja.mirtitsch%sun.com 2002-02-06 01:15:51 +00:00
Родитель a51b380443
Коммит 25e324cbb6
1 изменённых файлов: 12 добавлений и 4 удалений

Просмотреть файл

@ -125,10 +125,18 @@ smime_main()
ret=$?
html_msg $ret 0 "Create Multiple Recipients Enveloped Data Alice" "."
if [ $ret != 0 ] ; then
echo "certutil -L -d ${R_ALICEDIR}"
certutil -L -d -d ${R_ALICEDIR}
echo "certutil -L -d ${R_ALICEDIR} -n dave@bogus.com"
certutil -L -d ${R_ALICEDIR} -n dave@bogus.com
i=0
echo "cp -r ${R_ALICEDIR} ${R_ALICEDIR}.trouble"
cp -r ${R_ALICEDIR} ${R_ALICEDIR}.trouble
while [ $i -lt 100 ] ; do
echo "will attempt to list the certs in the db `expr 100 - $i` more times"
echo "certutil -L -d ${R_ALICEDIR}"
certutil -L -d ${R_ALICEDIR}
echo "certutil -L -d ${R_ALICEDIR} -n dave@bogus.com"
certutil -L -d ${R_ALICEDIR} -n dave@bogus.com
sleep 30
i=`expr $i + 1`
done
fi
echo "cmsutil -D -i alicecc.env -d ${R_BOBDIR} -p nss -o alice.data2"