[Gutl-l] Re: VirtualHost para _h5ai

2019-01-04 Por tema Alexis Verano Glez
Por aca lo tenemos configurado de esta forma en nginxEN el archivo del
virtualhost que hace referencia al archivo de index
index.html /_h5ai/public/index.php;
El dom, 30-12-2018 a las 16:58 -0500, azufre@infomed.sld.cu
escribió:
> Saludos, Felicidades a todos
> Alguno de ustedes ha configurado _h5ai para tener los ficheros del
> FTP  
> fuera de la carpeta _h5ai, es decir me gustaría recibir alguna
> ayuda  
> para configurar el VirtualHost y que quede de esta manera, los  
> ficheros del FTP en /var/www/ftp y _h5ai en /var/www/html/_h5ai
> Lo que he leído y encontrado no me ha servido de mucho.
> Tengo debian8
> Muchas gracias a todos
> 
> 
> 
> This message was sent using IMP, the Internet Messaging Program.
> 
> 
> 
> --
> Este mensaje le ha llegado mediante el servicio de correo electronico
> que ofrece Infomed para respaldar el cumplimiento de las misiones del
> Sistema Nacional de Salud. La persona que envia este correo asume el
> compromiso de usar el servicio a tales fines y cumplir con las
> regulaciones establecidas
> 
> Infomed: http://www.sld.cu/
> 
> ___
> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
> n


Saludos,

-- 

Lic. Alexis Verano Glez
J' Departamento de Informática
Centro Nacional de Desarrollo Profesional. ONBC
Correo-e: jinformat...@uai.onbc.cu | alexis.ver...@uai.onbc.cu
Telef: (+53)7643-9241 | (+53)5214-8384___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Repo local

2019-01-04 Por tema Jose Joaquin Ruiz Silva
Buenos dias para todos en la lista tengo una duda con la descarga del 
repo yo descargo y actualizo mi repo de ulises.hostalia.com y estoy 
viendo que el clamav esta en la version 
clamav-daemon_0.101.0+dfsg-1_amd64.deb y yo tengo la versio 
clamav-daemon_0.100.2+dfsg-0+deb9u1_amd64.deb no se porque no actualiza 
esta es la configuracion que tengo:



#!/bin/bash

proxy=http://user:pass@x.x.x.x:3128/

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

SECCIONES=main,contrib,non-free

# -
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 




alguna sugerencia 



Saludos.


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


[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
El 4/1/19 a las 7:47, Jose Joaquin Ruiz Silva escribió:
> Buenos dias para todos en la lista tengo una duda con la descarga del
> repo yo descargo y actualizo mi repo de ulises.hostalia.com y estoy
> viendo que el clamav esta en la version
> clamav-daemon_0.101.0+dfsg-1_amd64.deb y yo tengo la versio
> clamav-daemon_0.100.2+dfsg-0+deb9u1_amd64.deb no se porque no actualiza
> esta es la configuracion que tengo:
> 
> 
> #!/bin/bash
> 
> proxy=http://user:pass@x.x.x.x:3128/
> 
> ARQUITECTURA=amd64,i386
> METODO=http
> ROOT=debian
> RAMA=stretch
> HOST=ulises.hostalia.com
> TO=/mnt/Debian/stretch
> 
> SECCIONES=main,contrib,non-free
> 
> # -
> 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
> 
> 
> 
> alguna sugerencia
> 
> 
> Saludos.
> 
> 
> 
> ___
> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
> 
Te recomiendo que uses los repos oficiales. Fuerces eliminando los
temporales de debmirror.

-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Re: Repo local

2019-01-04 Por tema Jose Joaquin Ruiz Silva
Arian mira esa pagina tiene lo mismo que la fe ftp.us.debian.org y me 
dio por revisar los ficheros Packages del main y cuando busco el 
clamav-daemon el que esta es el tengo descargado, asi que no se que 
hacer no se si cambiar el --nosource por --source o cambiar a rsync. Es 
que el uno de los mensajes que me esta dando en los log es que la 
version del clamav es vieja.


El 4/1/2019 a las 09:52, Arian Molina Aguilera escribió:

El 4/1/19 a las 7:47, Jose Joaquin Ruiz Silva escribió:

Buenos dias para todos en la lista tengo una duda con la descarga del
repo yo descargo y actualizo mi repo de ulises.hostalia.com y estoy
viendo que el clamav esta en la version
clamav-daemon_0.101.0+dfsg-1_amd64.deb y yo tengo la versio
clamav-daemon_0.100.2+dfsg-0+deb9u1_amd64.deb no se porque no actualiza
esta es la configuracion que tengo:


#!/bin/bash

proxy=http://user:pass@x.x.x.x:3128/

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

SECCIONES=main,contrib,non-free

# -
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



alguna sugerencia


Saludos.



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


Te recomiendo que uses los repos oficiales. Fuerces eliminando los
temporales de debmirror.


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


[Gutl-l] Squid

2019-01-04 Por tema David Cordero Rosales
Buenos días:

Tengo la siguiente duda, quisiera que todos mis usuarios después de 
autenticarse en squid sea redireccionado a una web en especifico.

En espera de su ayuda


Enviado desde Correo para Windows 10

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


[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
El 4/1/19 a las 11:19, Jose Joaquin Ruiz Silva escribió:
> Arian mira esa pagina tiene lo mismo que la fe ftp.us.debian.org y me
> dio por revisar los ficheros Packages del main y cuando busco el
> clamav-daemon el que esta es el tengo descargado, asi que no se que
> hacer no se si cambiar el --nosource por --source o cambiar a rsync. Es
> que el uno de los mensajes que me esta dando en los log es que la
> version del clamav es vieja.
> 
> El 4/1/2019 a las 09:52, Arian Molina Aguilera escribió:
>> El 4/1/19 a las 7:47, Jose Joaquin Ruiz Silva escribió:
>>> Buenos dias para todos en la lista tengo una duda con la descarga del
>>> repo yo descargo y actualizo mi repo de ulises.hostalia.com y estoy
>>> viendo que el clamav esta en la version
>>> clamav-daemon_0.101.0+dfsg-1_amd64.deb y yo tengo la versio
>>> clamav-daemon_0.100.2+dfsg-0+deb9u1_amd64.deb no se porque no actualiza
>>> esta es la configuracion que tengo:
>>> 
>>>
>>> #!/bin/bash
>>>
>>> proxy=http://user:pass@x.x.x.x:3128/
>>>
>>> ARQUITECTURA=amd64,i386
>>> METODO=http
>>> ROOT=debian
>>> RAMA=stretch
>>> HOST=ulises.hostalia.com
>>> TO=/mnt/Debian/stretch
>>>
>>> SECCIONES=main,contrib,non-free
>>>
>>> # -
>>> 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
>>> 
>>>
>>>
>>> alguna sugerencia
>>> 
>>>
>>> Saludos.
>>> 
>>>
>>>
>>> ___
>>> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
>>> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
>>>
>> Te recomiendo que uses los repos oficiales. Fuerces eliminando los
>> temporales de debmirror.
>>
>>
>> ___
>> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
>> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
> 
> ___
> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
> 
no source o nosource no tiene nada que ver con eso, al parecer es un
problema de repos de origen, que no esta aún bien sincronizado, puedes
cambiar a rsync y forzar la resincronización a ver.

-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Re: Repo local

2019-01-04 Por tema Jose Joaquin Ruiz Silva

mira esto me lo dice el fichero log que tengo

[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
[GNUPG:] SIG_ID x054Q9bEiB1DbKxNSU+QLVVg1KQ 2018-11-10 1541844771
[GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
[GNUPG:] GOODSIG 8B48AD6246925553 Debian Archive Automatic Signing Key 
(7.0/wheezy) 
[GNUPG:] VALIDSIG A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 2018-11-10 
1541844771 0 4 0 1 8 00 A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553

[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
[GNUPG:] SIG_ID NzJ1tovfotoYYWqNYthdZ7kCjXU 2018-11-10 1541844771
[GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
[GNUPG:] GOODSIG 7638D0442B90D010 Debian Archive Automatic Signing Key 
(8/jessie) 
[GNUPG:] VALIDSIG 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 2018-11-10 
1541844771 0 4 0 1 8 00 126C0D24BD8A2942CC7DF8AC7638D0442B90D010

[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
[GNUPG:] SIG_ID fGSdxrZOtEiZE05HioHFdWa0pP8 2018-11-10 1541845101
[GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
[GNUPG:] GOODSIG EF0F382A1A7B6500 Debian Stable Release Key (9/stretch) 

[GNUPG:] VALIDSIG 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 2018-11-10 
1541845101 0 4 0 1 8 00 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500

gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
gpgv:    using RSA key A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553
gpgv: Good signature from "Debian Archive Automatic Signing Key 
(7.0/wheezy) "

gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
gpgv:    using RSA key 126C0D24BD8A2942CC7DF8AC7638D0442B90D010
gpgv: Good signature from "Debian Archive Automatic Signing Key 
(8/jessie) "

gpgv: Signature made sáb 10 nov 2018 05:18:21 CST
gpgv:    using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500
gpgv: Good signature from "Debian Stable Release Key (9/stretch) 
"



que puedo hacer

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


[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
El 4/1/19 a las 12:37, Jose Joaquin Ruiz Silva escribió:
> mira esto me lo dice el fichero log que tengo
> 
> [GNUPG:] NEWSIG
> [GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
> [GNUPG:] SIG_ID x054Q9bEiB1DbKxNSU+QLVVg1KQ 2018-11-10 1541844771
> [GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
> [GNUPG:] GOODSIG 8B48AD6246925553 Debian Archive Automatic Signing Key
> (7.0/wheezy) 
> [GNUPG:] VALIDSIG A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 2018-11-10
> 1541844771 0 4 0 1 8 00 A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553
> [GNUPG:] NEWSIG
> [GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
> [GNUPG:] SIG_ID NzJ1tovfotoYYWqNYthdZ7kCjXU 2018-11-10 1541844771
> [GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
> [GNUPG:] GOODSIG 7638D0442B90D010 Debian Archive Automatic Signing Key
> (8/jessie) 
> [GNUPG:] VALIDSIG 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 2018-11-10
> 1541844771 0 4 0 1 8 00 126C0D24BD8A2942CC7DF8AC7638D0442B90D010
> [GNUPG:] NEWSIG
> [GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
> [GNUPG:] SIG_ID fGSdxrZOtEiZE05HioHFdWa0pP8 2018-11-10 1541845101
> [GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
> [GNUPG:] GOODSIG EF0F382A1A7B6500 Debian Stable Release Key (9/stretch)
> 
> [GNUPG:] VALIDSIG 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 2018-11-10
> 1541845101 0 4 0 1 8 00 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500
> gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
> gpgv:    using RSA key A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553
> gpgv: Good signature from "Debian Archive Automatic Signing Key
> (7.0/wheezy) "
> gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
> gpgv:    using RSA key 126C0D24BD8A2942CC7DF8AC7638D0442B90D010
> gpgv: Good signature from "Debian Archive Automatic Signing Key
> (8/jessie) "
> gpgv: Signature made sáb 10 nov 2018 05:18:21 CST
> gpgv:    using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500
> gpgv: Good signature from "Debian Stable Release Key (9/stretch)
> "
> 
> 
> que puedo hacer
> 
> ___
> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
eso es que valida las llaves y firmas gpg, nada que ver, solo dicen que
los paquetes se compruebas bien con su firma correctamente,.

-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Re: Repo local

2019-01-04 Por tema Jose Joaquin Ruiz Silva

gracias arian no sabia eso. pensaba que era un error.

Saludos y gracias

El 4/1/2019 a las 13:20, Arian Molina Aguilera escribió:

El 4/1/19 a las 12:37, Jose Joaquin Ruiz Silva escribió:

mira esto me lo dice el fichero log que tengo

[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
[GNUPG:] SIG_ID x054Q9bEiB1DbKxNSU+QLVVg1KQ 2018-11-10 1541844771
[GNUPG:] KEY_CONSIDERED A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 0
[GNUPG:] GOODSIG 8B48AD6246925553 Debian Archive Automatic Signing Key
(7.0/wheezy) 
[GNUPG:] VALIDSIG A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553 2018-11-10
1541844771 0 4 0 1 8 00 A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553
[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
[GNUPG:] SIG_ID NzJ1tovfotoYYWqNYthdZ7kCjXU 2018-11-10 1541844771
[GNUPG:] KEY_CONSIDERED 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 0
[GNUPG:] GOODSIG 7638D0442B90D010 Debian Archive Automatic Signing Key
(8/jessie) 
[GNUPG:] VALIDSIG 126C0D24BD8A2942CC7DF8AC7638D0442B90D010 2018-11-10
1541844771 0 4 0 1 8 00 126C0D24BD8A2942CC7DF8AC7638D0442B90D010
[GNUPG:] NEWSIG
[GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
[GNUPG:] SIG_ID fGSdxrZOtEiZE05HioHFdWa0pP8 2018-11-10 1541845101
[GNUPG:] KEY_CONSIDERED 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 0
[GNUPG:] GOODSIG EF0F382A1A7B6500 Debian Stable Release Key (9/stretch)

[GNUPG:] VALIDSIG 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500 2018-11-10
1541845101 0 4 0 1 8 00 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500
gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
gpgv:    using RSA key A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553
gpgv: Good signature from "Debian Archive Automatic Signing Key
(7.0/wheezy) "
gpgv: Signature made sáb 10 nov 2018 05:12:51 CST
gpgv:    using RSA key 126C0D24BD8A2942CC7DF8AC7638D0442B90D010
gpgv: Good signature from "Debian Archive Automatic Signing Key
(8/jessie) "
gpgv: Signature made sáb 10 nov 2018 05:18:21 CST
gpgv:    using RSA key 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500
gpgv: Good signature from "Debian Stable Release Key (9/stretch)
"


que puedo hacer

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

eso es que valida las llaves y firmas gpg, nada que ver, solo dicen que
los paquetes se compruebas bien con su firma correctamente,.


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


[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
asegúrate en tu script tener la session stretch-updates
-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
El 4/1/19 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
> 
He estado revisando mis repos, y están exactamente igual con la misma
versión del clamav.

-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu


[Gutl-l] Re: Repo local

2019-01-04 Por tema Jose Joaquin Ruiz Silva

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}

[Gutl-l] Re: Repo local

2019-01-04 Por tema Arian Molina Aguilera
El 4/1/19 a las 14:33, Jose Joaquin Ruiz Silva escribió:
> 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
> 
> ___
> Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
> To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu
> 
eso no ha caído todavía, tienes que esperar, o actualiza tu clamav
manualmente.

-- 
Arian Molina Aguilera
Administrador de Redes y Servicios Telemáticos
Linux Usuario Registrado #392892
Telfs: +53(7)696-7510 ext 236
email: linuxc...@teknik.io
“Nunca consideres el estudio como una obligación,
sino como una oportunidad para penetrar en el bello
y maravilloso mundo del saber. Albert Einstein”



signature.asc
Description: OpenPGP digital signature
___
Gutl-l mailing list -- gutl-l@listas.jovenclub.cu
To unsubscribe send an email to gutl-l-le...@listas.jovenclub.cu