#!/bin/bash . /etc/sysconfig/autoport NUM=`echo "$QUERY_STRING" | sed -n 's/^.*NUM=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` SECONDARY=`echo "$QUERY_STRING" | sed -n 's/^.*SECONDARY=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` SHOWLOG=`echo "$QUERY_STRING" | sed -n 's/^.*SHOWLOG=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` SHOWLASTLOG=`echo "$QUERY_STRING" | sed -n 's/^.*SHOWLASTLOG=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` LINES=`echo "$QUERY_STRING" | sed -n 's/^.*LINES=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` [ "$LINES" ] || LINES=5 [ "$SECONDARY" ] && SECONDARY_ADD="&SECONDARY=1" echo -e "Content-type: text/html; charset=UTF-8\n\n" for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do [ "${AUTOPORT_ARCH[$i]}" ] || continue [ "${AUTOPORT_DISABLE[$i]}" -a "${AUTOPORT_DISABLE[$i]}" != "0" ] && continue if [ "${AUTOPORT_UPDATE[$i]}" ]; then LOGFILE="/var/autodist/log/autodist.log" LASTLOGFILE="/var/autodist/log/autodist-last.log" elif [ "${AUTOPORT_CHROOT[$i]}" ]; then LOGFILE="/var/autodist/log/autoport-chroot-${AUTOPORT_CHROOT[$i]}.log" LASTLOGFILE="/var/autodist/log/autoport-chroot-${AUTOPORT_CHROOT[$i]}-last.log" elif [ "${AUTOPORT_NATIVE[$i]}" ]; then LOGFILE="/var/autodist/log/autoport-native-${AUTOPORT_ARCH[$i]}.log" LASTLOGFILE="/var/autodist/log/autoport-native-${AUTOPORT_ARCH[$i]}-last.log" elif [ "${AUTOPORT_CROSS[$i]}" ]; then LOGFILE="/var/autodist/log/autoport-cross-${AUTOPORT_CROSS[$i]}.log" LASTLOGFILE="/var/autodist/log/autoport-cross-${AUTOPORT_CROSS[$i]}-last.log" else continue fi if [ "$SHOWLOG" -a "$NUM" = "$i" ]; then if [ ! "$SECONDARY" ]; then echo "
"
         cat $LOGFILE
         echo "
" else curl "$AUTOPORT_CGI_SECONDARY?SHOWLOG=1&NUM=$i" fi exit 0 elif [ "$SHOWLASTLOG" -a "$NUM" = "$i" ]; then if [ ! "$SECONDARY" ]; then echo "
"
         cat $LASTLOGFILE
         echo "
" else curl "$AUTOPORT_CGI_SECONDARY?SHOWLASTLOG=1&NUM=$i" fi exit 0 elif [ ! "$SHOWLOG" -a ! "$SHOWLASTLOG" ]; then [[ "$NUM" && "$NUM" != "$i" ]] && continue if [ "${AUTOPORT_UPDATE[$i]}" ]; then echo "* autodist update (host:`hostname -s`,arch:${AUTOPORT_ARCH[$i]},channels:${AUTOPORT_REPOSITORIES[$i]})" echo " [ last ]" fi if [ "${AUTOPORT_CHROOT[$i]}" ]; then echo "* chroot autoport (host:`hostname -s`,arch:${AUTOPORT_ARCH[$i]},channels:${AUTOPORT_REPOSITORIES[$i]},chroot:${AUTOPORT_CHROOT[$i]})" echo " [ last ]" fi if [ "${AUTOPORT_NATIVE[$i]}" ]; then echo "* native autoport (host:`hostname -s`,arch:${AUTOPORT_ARCH[$i]},channels:${AUTOPORT_REPOSITORIES[$i]})" echo " [ last ]" fi if [ "${AUTOPORT_CROSS[$i]}" ]; then echo "* cross-platform autoport (host:`hostname -s`,arch:${AUTOPORT_CROSS[$i]})" echo " [ last ]" fi echo "
"
      grep -v "^=" $LOGFILE | tail -n "$LINES" | sed "s|.*\r||"
      echo
      echo "
" fi done [ "$NUM" ] && NUM=`expr $NUM - $i` if [ "$AUTOPORT_CGI_SECONDARY" -a ! "$SHOWLOG" -a ! "$SHOWLASTLOG" ]; then curl "$AUTOPORT_CGI_SECONDARY?SECONDARY=1&LINES=$LINES&NUM=$NUM" fi