mano estos son todos los que tengo

El 4/1/2019 a las 14:08, Arian Molina Aguilera escribió:
asegúrate en tu script tener la session stretch-updates

_______________________________________________
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=debian
RAMA=stretch
HOST=ftp.us.debian.org
TO=/mnt/Debian/stretch

SECCIONES=main,contrib,non-free,main/debian-installer,contrib/debian-installer,non-free/debian-installer
# -----
LOGDIR=/mnt
LOGFILE=stretch.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, contrib, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--debug \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--nosource \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch.pid
fi

exit 0
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=debian
RAMA=stretch-backports
HOST=ulises.hostalia.com
TO=/mnt/Debian/stretch-backports

SECCIONES=main,contrib,non-free

# -----
LOGDIR=/mnt
LOGFILE=stretch-backports.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch-backports.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch-backports.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, contrib, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--debug \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--source \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch-backports.pid
fi

exit 0
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=/
RAMA=stretch
HOST=www.deb-multimedia.org
TO=/mnt/Debian/stretch-multimedia

SECCIONES=main,non-free

# -----
LOGDIR=/mnt
LOGFILE=stretch-multimedia.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch-multimedia.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch-multimedia.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--source \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch-multimedia.pid
fi

exit 0
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=debian
RAMA=stretch-proposed-updates
HOST=ulises.hostalia.com
TO=/mnt/Debian/stretch-proposed-updates

SECCIONES=main,contrib,non-free

# -----
LOGDIR=/mnt
LOGFILE=stretch-proposed-updates.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch-proposed-updates.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch-proposed-updates.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, contrib, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--debug \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--source \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch-proposed-updates.pid
fi

exit 0
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=debian-security
RAMA=stretch/updates
HOST=security.debian.org
TO=/mnt/Debian/stretch-security

SECCIONES=main,contrib,non-free

# -----
LOGDIR=/mnt
LOGFILE=stretch-security.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch-security.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch-security.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, contrib, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--source \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch-security.pid
fi

exit 0
#!/bin/bash

proxy=http://josej:jose2017@172.16.1.171:3128/

ARQUITECTURA=amd64
METODO=http
ROOT=debian
RAMA=stretch-updates
HOST=ulises.hostalia.com
TO=/mnt/Debian/stretch-updates

SECCIONES=main,contrib,non-free

# -----
LOGDIR=/mnt
LOGFILE=stretch-updates.log

date >$LOGDIR/$LOGFILE

if [ -f $LOGDIR/stretch-updates.pid ]; then
    echo "La actualizacion del mirror se esta ejecutando."
else
    echo $$ > $LOGDIR/stretch-updates.pid


echo "==================================================================="
echo "Actualizando los repositorios PRINCIPALES; main, contrib, non-free"
echo "==================================================================="
echo ""

debmirror -a ${ARQUITECTURA} \
--debug \
--diff=none \
-s ${SECCIONES} \
-h ${HOST} \
-r ${ROOT} \
-d ${RAMA} \
-e ${METODO} \
--proxy=$proxy \
--passive \
--progress \
--verbose \
--source \
--postcleanup \
--getcontents \
--rsync-extra=none \
--i18n  --exclude='/Translation-.*\.bz2$' --include='/Translation-es.*\.bz2$' 
--include='/Translation-en.*\.bz2$' \
--exclude='/l10n-.*\.deb$' --include='/l10-es.*\.deb$' 
--include='/l10-en.*\.deb$' \
--ignore-release-gpg \
--ignore-missing-release \
${TO} >$LOGDIR/$LOGFILE 2>&1

 (cd $LOGDIR; savelog $LOGFILE)
 rm $LOGDIR/stretch-updates.pid
fi

exit 0
_______________________________________________
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu

Responder a