[BACK]Return to fw_install.sh CVS log [TXT][DIR] Up to [local] / openbsd / fw_update

Diff for /openbsd/fw_update/fw_install.sh between version 1.137 and 1.138

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

Legend:
Removed from v.1.137  
changed lines
  Added in v.1.138

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>