X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=buildd%2Ffunctions.sh;h=a960d6f59529eca563af7fedc6ead922e46d6552;hp=9aa4cd68767c13695ea9e5c0b1061f648243fd99;hb=f09970d3fe726061705a0443fc32dadf4fa9e27d;hpb=2848346519849550d686b9dc78f4a0da73f413ac diff --git a/buildd/functions.sh b/buildd/functions.sh index 9aa4cd6..a960d6f 100755 --- a/buildd/functions.sh +++ b/buildd/functions.sh @@ -20,13 +20,14 @@ which mutt >/dev/null 2>&1 || die "mutt binary not found. Exiting." [ -n "$SUITE" ] || die "\$SUITE is not set. Exiting." [ -n "$CLASSES" ] || die "\$CLASSES is not set. Exiting." [ -n "$NAME" ] || die "\$NAME is not set. Exiting." -[ -n "$ISO_NAME" ] || die "\$ISO_NAME is not set. Exiting." +[ -n "$PRODUCT_NAME" ] || die "\$PRODUCT_NAME is not set. Exiting." # some defaults: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11 DATE=$(date +'%Y%m%d_%H%M%S') TMP_DIR="$(mktemp -d)" [ -n "$TMP_DIR" ] || die "Could not create \$TMP_DIR. Exiting." +ISO_NAME="${PRODUCT_NAME}.iso" # make sure we have same safe defaults: [ -n "$OUTPUT_DIR" ] || OUTPUT_DIR="${STORAGE}/grml-live_${DATE}.$$" @@ -34,7 +35,7 @@ TMP_DIR="$(mktemp -d)" [ -n "$RECIPIENT" ] || RECIPIENT=root@localhost [ -n "$FROM" ] || FROM=root@localhost [ -n "$ARCH" ] || ARCH="$(dpkg --print-architecture)" -ATTACHMENT="$TMP_DIR/grml-live-logs_$DATE.tar.gz" +MIRROR_LOG_PATH="logs/${PRODUCT_NAME}_${DATE}" if [ -n "$LOGFILE" ] ; then GRML_LOGFILE="$LOGFILE" @@ -69,8 +70,7 @@ grml_live_run() { TIME_START=$(date +%s) grml-live -F $* -a $ARCH -s $SUITE -c $CLASSES -o $OUTPUT_DIR \ -g "$grml_name" -v "$shortdate" -r grml-live-autobuild -i $ISO_NAME \ - >/var/log/grml-buildd.stdout \ - 2>/var/log/grml-buildd.stderr ; RC=$? + >/var/log/grml-buildd.log 2>&1 ; RC=$? TIME_END=$(date +%s) WALLTIME=$(($TIME_END-$TIME_START)) @@ -82,16 +82,11 @@ grml_live_run() { fi } -# create log archive: -create_logs() { - ( cd / && tar zcfh $ATTACHMENT $FAI_LOGFILES /var/log/grml-buildd.stderr /var/log/grml-buildd.stdout $GRML_LOGFILE >/dev/null ) -} - # store logs on remote server: upload_logs() { [ -n "$RSYNC_MIRROR" ] || return 1 - rsync --exclude dmesg.log --times --partial --copy-links -rltDz --quiet /var/log/grml-buildd.* \ - $FAI_LOGFILES $GRML_LOGFILE $RSYNC_MIRROR/logs/"${NAME}_${DATE}"/ + rsync --exclude dmesg.log --times --partial --copy-links -rltDz --quiet /var/log/grml-buildd.log \ + $FAI_LOGFILES/* $GRML_LOGFILE $RSYNC_MIRROR/$MIRROR_LOG_PATH/ } # store information of ISO size: @@ -105,26 +100,20 @@ iso_details() { # send status mail: send_mail() { - # create logs if using 'send_mail -e' - [ "$1" = "-e" ] && create_logs - - # attach logs only if we have some: - [ -r "$ATTACHMENT" ] && MUTT_ATTACH="-a $ATTACHMENT" || MUTT_ATTACH='' - - echo "Automatically generated mail by $SCRIPTNAME - -$ISO_DETAILS + echo "$ISO_DETAILS Return code of grml-live was: $RC Time: $WALLTIME +Full logs at: $MIRROR_URL/$MIRROR_LOG_PATH/ + $(grep -A2 'Executed grml-live' $GRML_LOGFILE || echo "* executed grml-live command line not available") $(grep -A2 'Executed FAI' $GRML_LOGFILE || echo "* executed FAI command line not available") The following errors have been noticed (several might be warnings only): -$(grep -i error $FAI_LOGFILES/*.log /var/log/grml-buildd.std* | grep -ve liberror -ve libgpg-error -ve libcomerr -ve 'no errors found' || echo "* nothing") +$(grep -i error $FAI_LOGFILES/*.log /var/log/grml-buildd.log | grep -ve liberror -ve libgpg-error -ve libcomerr -ve 'no errors found' || echo "* nothing") The following errors have been noticed in FAI scripts: @@ -132,7 +121,7 @@ $(grep -B2 "FAILED with exit code" $FAI_LOGFILES/* | echo "* nothing") The following warnings have been noticed: -$(grep -i warn $FAI_LOGFILES/* /var/log/grml-buildd.std* || echo "* nothing") +$(grep -i warn $FAI_LOGFILES/* /var/log/grml-buildd.log || echo "* nothing") There following dependency problems have been noticed: @@ -142,11 +131,13 @@ The following packages could not be installed: $(grep -i "Couldn't find.*package" $FAI_LOGFILES/software.log | sed 's/\(.*\)"\(.*\)"\(.*\)/\2/' | sort -u || echo "* nothing") -See attached files for further details. +See full logs for further details. -EOF" | \ - mutt -e "my_hdr From: grml-live autobuild daemon <$FROM>" -s "$SCRIPTNAME [${DATE}] - $RC_INFO" \ - -a /var/log/grml-buildd.stderr $MUTT_ATTACH -- "$RECIPIENT" +--" " +Automatically generated mail by $SCRIPTNAME +" | \ + mutt -e "my_hdr From: grml-live autobuild daemon <$FROM>" -s "$PRODUCT_NAME - $RC_INFO" \ + -a /var/log/grml-buildd.log -- "$RECIPIENT" } # make sure we store the final iso: @@ -166,9 +157,8 @@ store_iso() { # allow clean exit: bailout() { if [ "$RC" = "0" ] ; then - rm -rf "$ATTACHMENT" "$TMP_DIR" "$OUTPUT_DIR" + rm -rf "$TMP_DIR" "$OUTPUT_DIR" else - rm -f "$ATTACHMENT" echo "building ISO failed, keeping build files [${OUTPUT_DIR} / ${TMP_DIR}]">&2 fi