Date: Thu, 04 Oct 2001 23:12:51 -0500 From: Greg Panula <greg.panula@dolaninformation.com> To: "Scot W. Hetzel" <hetzels@westbend.net> Cc: jeh@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: uvscan-4.14e Message-ID: <3BBD3343.1AF5D64F@dolaninformation.com> References: <3BBA9DF5.953C782D@dolaninformation.com> <009801c14d4f$d8fb7d80$11fd2fd8@westbend.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Hehehe, good to see they know their own name. I just updated my security ports collection and the latest update_dat script Jim commited was able to retrieve the 4164 dat file without any problems. His script is much more flexible than mine, I recommend using it.... seeing how mine doesn't work. :-) Greg "Scot W. Hetzel" wrote: > > It didn't work with the 4164 dat file. I had to replace AVVER with: > > AVVER=`head -2 readme.txt | grep -e "McAfee" -e "MacAfee" | cut -d' ' -f5` > > They misspelled McAfee in readme.txt. > > Scot > > From: "Greg Panula" <greg.panula@dolaninformation.com> > > Attached is a corrected update_dat script for updating the dat file to version > > 4163. Should also work for future dat files, unless McAfee changes the layout > > of the readme.txt file. > > > > Thanks, > > Greg > > -------------------------------------------------------------------------------- > > > #!/bin/sh > > cd /usr/local/libexec/uvscan/ > > fetch http://download.nai.com/products/datfiles/4.x/nai/readme.txt > /dev/null 2>&1 > > AVVER=`head -2 readme.txt | grep McAfee | cut -d' ' -f14` > > if [ ! -f dat-$AVVER.tar ]; then > > for i in *.tar ; do > > mv $i $i.old > > done > > if fetch http://download.nai.com/products/datfiles/4.x/nai/dat-$AVVER.tar > /dev/null 2>&1 ; then > > for i in *.dat ; do > > cp -p $i $i.bak > > done > > if tar xf dat-$AVVER.tar ; then > > rm -f *.old > > echo `date` Successfully updated AntiVirus DAT files to $AVVER > > fi > > fi > > fi > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3BBD3343.1AF5D64F>