Jeremy Huntwork wrote: > We're working on a getting a master server in place for mirroring the > ISOs. We hope to have that up by the end of the week. That should help, > but yes, I'm inclined to agree with your idea, Bruce. Something like > that for each released CD could be very useful. > FYI, The current livecd master repo already has md5sums and sha1sums:
ftp://ftp.lfs-matrix.net/pub/lfs-livecd/MD5SUMS ftp://ftp.lfs-matrix.net/pub/lfs-livecd/SHA1SUMS If you wish to setup a different server for master, if it helps here is my script for generating md5sums/sha1sums, a .timestamp with last update and a directory listing. These are done on all other repos (lfs, clfs, blfs, hlfs) so might want to keep the same functionality. Also don't forget to email all livecd mirrors about the change. Justin [EMAIL PROTECTED] ~ $ cat ~/bin/livecdpackage #!/bin/bash DATDIR=/data/ftp/.1/lfs-livecd LISTING=.listing.bz2 cd $DATDIR rm -f MD5SUMS SHA1SUMS for ISO in *.iso ; do echo $ISO md5sum $ISO >> MD5SUMS sha1sum $ISO >> SHA1SUMS done date "+%Y%m%d%H%M" > .timestamp find . -type f -name "*.iso" | bzip2 > $LISTING -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page