[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: special provisions when etch makes it to archives?



Thanks, I was not aware of the existence of those two marvelous files..

I made a simple script that copies oldstable to debian-archives... only
thing that needs to be defined is the from and to directories.

This would make a copy of oldstable while it's not in the archives,
which means that no syncs should be performed (there is no reason to
regularly sync debian-archives, unless there is a change). When the
actual movement happens I can perform a sync.

Ricardo

<snip>
#!

FROM_DIR=/pub/mirror/debian
TO_DIR=/pub/tmp/debian-archive/debian

INDICES="\
indices/files/components/suite-oldstable.list.gz \
indices/files/components/suite-oldstable-proposed-updates.list.gz"

mkdir -p $TO_DIR
cd $FROM_DIR

for FILES in $INDICES ; do
 zcat $FILES | xargs cp --archive --target-directory=$TO_DIR --verbose
--parents
done
</snip>


> On Sun, Jan 31, 2010 at 12:21:15AM +0700, Chatchai Jantaraprim wrote:
>> 	How can we know that which packages belong to etch?
>>
>> 	find pool | grep etch
>> 	give lists of package, but I don't that is complete.
>
> It's not complete.
>
> The complete ones should be:
> indices/files/components/suite-oldstable.list.gz
> indices/files/components/suite-oldstable-proposed-updates.list.gz
>
> --
> Simon Paillard
>
>
> --
> To UNSUBSCRIBE, email to debian-mirrors-REQUEST@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmaster@lists.debian.org
>
>



Reply to: