From bfc4d9c50a4ed59069ed22b78c39f0f63fc52b2e Mon Sep 17 00:00:00 2001 From: ramon Date: Mon, 17 Oct 2011 11:55:06 +0000 Subject: Versión 1.0.2: No usar extensión por defecto para el envío de fichero por Multicast (modifica #448). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://opengnsys.es/svn/branches/version1.0@2350 a21b9725-9963-47de-94b9-378ad31fedc9 --- repoman/bin/sendFileMcast | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'repoman') diff --git a/repoman/bin/sendFileMcast b/repoman/bin/sendFileMcast index 39f6a947..bf7091e0 100755 --- a/repoman/bin/sendFileMcast +++ b/repoman/bin/sendFileMcast @@ -23,18 +23,15 @@ if [ $# -ne 2 ]; then exit 1 fi -# Fichero de imagen (camino completo o nombre de imagen sin extensión). +# Fichero a enviar (camino completo o relativo al directorio del repositorio). FICH="$1" if [ "${FICH:0:1}" != "/" ]; then - for EXT in pgz img; do - FICHIMG="$OGIMG/$FICH.$EXT" - [ -r "$FICHIMG" ] && break - done + FICHIMG="$OGIMG/$FICH" else FICHIMG="$FICH" fi if [ ! -f "$FICHIMG" ]; then - echo "$PROG Error: Fichero \"$FICH\" no accesible" + echo "$PROG Error: Fichero \"$FICHIMG\" no accesible" exit 2 fi @@ -59,8 +56,5 @@ CERROR="8x8/128" # Envío de fichero por Multicast. which mbuffer &> /dev/null && MBUFFER="--pipe 'mbuffer -m 20M'" -##### ADV v. 1.0 23/02/2011 -#version 0.10 # udp-sender $MBUFFER --portbase $PORTBASE --$METHOD --mcast-data-address $ADDRESS --fec $CERROR --max-bitrate $BITRATE --ttl 1 --min-clients $NCLIENTS --max-wait $MAXTIME --file "$FICHIMG" $OGBIN/udp-sender $MBUFFER --nokbd --retries-until-drop 65 --portbase $PORTBASE --$METHOD --mcast-data-address $ADDRESS --fec $CERROR --max-bitrate $BITRATE --ttl 1 --min-clients $NCLIENTS --max-wait $MAXTIME --file "$FICHIMG" -##### ADV v. 1.0 23/02/2011 -- cgit v1.2.3-18-g5258