=================================================================== RCS file: /cvs/openbsd/fw_update/fw_install.sh,v retrieving revision 1.137 retrieving revision 1.138 diff -u -r1.137 -r1.138 --- openbsd/fw_update/fw_install.sh 2021/12/26 18:39:46 1.137 +++ openbsd/fw_update/fw_install.sh 2021/12/26 18:58:54 1.138 @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: fw_install.sh,v 1.137 2021/12/26 18:39:46 afresh1 Exp $ +# $OpenBSD: fw_install.sh,v 1.138 2021/12/26 18:58:54 afresh1 Exp $ # # Copyright (c) 2021 Andrew Hewus Fresh # @@ -35,7 +35,7 @@ FWPUB_KEY=${DESTDIR}/etc/signify/openbsd-${VERSION}-fw.pub DRYRUN=false -VERBOSE=false +VERBOSE=0 DELETE=false DOWNLOAD=true INSTALL=true @@ -75,14 +75,17 @@ # we have su(1) and doas(1) is unlikely to be configured. set -o monitor # make sure ftp gets its own process group ( - flags=-VM - "$VERBOSE" && flags=-vm + _flags=-vm + case "$VERBOSE" in + 0|1) _flags=-VM ;; + 2) _flags=-Vm ;; + esac if [ -x /usr/bin/su ]; then exec /usr/bin/su -s /bin/ksh "$_user" -c \ - "/usr/bin/ftp -N '${0##/}' -D 'Get/Verify' $flags -o- '$_src'" > "$_dst" + "/usr/bin/ftp -N '${0##/}' -D 'Get/Verify' $_flags -o- '$_src'" > "$_dst" else exec /usr/bin/doas -u "$_user" \ - /usr/bin/ftp -N "${0##/}" -D 'Get/Verify' $flags -o- "$_src" > "$_dst" + /usr/bin/ftp -N "${0##/}" -D 'Get/Verify' $_flags -o- "$_src" > "$_dst" fi ) & FTPPID=$! set +o monitor @@ -198,9 +201,15 @@ add_firmware () { local _f="${1##*/}" _pkgname FWPKGTMP="$( tmpdir "${DESTDIR}/var/db/pkg/.firmware" )" - local flags=-VM - "$VERBOSE" && flags=-vm - ftp -N "${0##/}" -D "Install" "$flags" -o- "file:${1}" | + local _flags=-vm + case "$VERBOSE" in + 0|1) _flags=-VM ;; + 2|3) _flags=-Vm ;; + esac + + [ "$VERBOSE" -eq 1 ] && echo -n "Install ${_f} ..." + + ftp -N "${0##/}" -D "Install" "$_flags" -o- "file:${1}" | tar -s ",^\+,${FWPKGTMP}/+," \ -s ",^firmware,${DESTDIR}/etc/firmware," \ -C / -zxphf - "+*" "firmware/*" @@ -226,13 +235,15 @@ chmod 755 "$FWPKGTMP" mv "$FWPKGTMP" "${DESTDIR}/var/db/pkg/${_pkgname}" unset FWPKGTMP + + [ "$VERBOSE" -eq 1 ] && echo " done." } delete_firmware() { local _cwd _pkg="$1" _pkgdir="${DESTDIR}/var/db/pkg" # TODO: Check hash for files before deleting - "$VERBOSE" && echo "Uninstalling $_pkg" + [ "$VERBOSE" -gt 0 ] && echo -n "Uninstall $_pkg ..." _cwd="${_pkgdir}/$_pkg" if [ ! -e "$_cwd/+CONTENTS" ] || @@ -267,6 +278,8 @@ rm -f "$_r" fi done + + [ "$VERBOSE" -gt 0 ] && echo " done." } usage() { @@ -284,7 +297,7 @@ D) OPT_D=true ;; n) DRYRUN=true ;; p) LOCALSRC="$OPTARG" ;; - v) VERBOSE=true ;; + v) VERBOSE=$(( VERBOSE + 1 )) ;; :) echo "${0##*/}: option requires an argument -- -$OPTARG" >&2 usage 2 @@ -354,7 +367,7 @@ if [ "${installed:-}" ]; then for fw in "${installed[@]}"; do if "$DRYRUN"; then - "$VERBOSE" && echo "Delete $fw" + [ "$VERBOSE" -gt 0 ] && echo "Delete $fw" else delete_firmware "$fw" || continue fi @@ -378,9 +391,9 @@ if [ "${devices[*]:-}" ]; then "$ALL" && usage 22 else - "$VERBOSE" && echo -n "Detecting firmware ..." + [ "$VERBOSE" -gt 0 ] && echo -n "Detect firmware ..." set -sA devices -- $( detect_firmware ) - "$VERBOSE" && + [ "$VERBOSE" -gt 0 ] && { [ "${devices[*]:-}" ] && echo " found." || echo " done." ; } fi @@ -418,7 +431,7 @@ if "$INSTALL" && [ "${installed[*]:-}" ]; then for i in "${installed[@]}"; do if [ "${f##*/}" = "$i.tgz" ]; then - "$VERBOSE" && echo "Keep $i" + [ "$VERBOSE" -gt 0 ] && echo "Keep $i" kept="$kept,$d" continue 2 fi @@ -427,7 +440,7 @@ if [ -e "$f" ]; then if "$DOWNLOAD"; then - "$VERBOSE" && ! "$INSTALL" && + [ "$VERBOSE" -gt 0 ] && ! "$INSTALL" && echo "Keep/Verify ${f##*/}" "$DRYRUN" || verify "$f" || continue "$INSTALL" || kept="$kept,$d" @@ -435,12 +448,15 @@ fi elif "$DOWNLOAD"; then if "$DRYRUN"; then - "$VERBOSE" && echo "Get/Verify ${f##*/}" + [ "$VERBOSE" -gt 0 ] && echo "Get/Verify ${f##*/}" else - fetch "$f" || continue - verify "$f" || continue + [ "$VERBOSE" -eq 1 ] && echo -n "Get/Verify ${f##*/} ..." + fetch "$f" && + verify "$f" || + { [ "$VERBOSE" -eq 1 ] && echo " failed."; continue; } + [ "$VERBOSE" -eq 1 ] && echo " done." fi - "$INSTALL" || added="$added,$d" + "$INSTALL" || added="$added,$d" elif "$INSTALL"; then echo "Cannot install ${f##*/}, not found" >&2 continue @@ -461,10 +477,10 @@ f="${f##*/}" f="${f%.tgz}" if "$removed"; then - "$DRYRUN" && "$VERBOSE" && echo "Update $f" + "$DRYRUN" && [ "$VERBOSE" -gt 0 ] && echo "Update $f" updated="$updated,$d" else - "$DRYRUN" && "$VERBOSE" && echo "Install $f" + "$DRYRUN" && [ "$VERBOSE" -gt 0 ] && echo "Install $f" added="$added,$d" fi done