slackware-current/slackware64/k/maketag
Patrick J Volkerding 3c2034f8a2 Thu Apr 29 01:37:15 UTC 2021
n/bind-9.16.15-x86_64-1.txz:  Upgraded.
  This update fixes bugs and the following security issues:
  A specially crafted GSS-TSIG query could cause a buffer overflow in the
  ISC implementation of SPNEGO.
  named crashed when a DNAME record placed in the ANSWER section during DNAME
  chasing turned out to be the final answer to a client query.
  Insufficient IXFR checks could result in named serving a zone without an SOA
  record at the apex, leading to a RUNTIME_CHECK assertion failure when the
  zone was subsequently refreshed. This has been fixed by adding an owner name
  check for all SOA records which are included in a zone transfer.
  For more information, see:
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25216
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25215
    https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25214
  (* Security fix *)
2021-04-29 09:00:04 +02:00

46 lines
1.1 KiB
Bash

#!/bin/sh
TMP=/var/log/setup/tmp
if [ ! -d $TMP ]; then
mkdir -p $TMP
fi
add() {
for package in $* ; do
echo "$package: ADD" >> $TMP/SeTnewtag
done
}
skip() {
for package in $* ; do
echo "$package: SKP" >> $TMP/SeTnewtag
done
}
#item ####description ###on off ###
cat /dev/null > $TMP/SeTnewtag
dialog --title "SELECTING SOFTWARE FROM SERIES K (Linux kernel source)" \
--checklist "Please confirm the packages you wish to install \
from series K. Use the UP/DOWN keys to scroll through the list, and \
the SPACE key to deselect any items you don't want to install. \
Press ENTER when you are \
done." 11 70 1 \
"kernel-source" "Linux 5.10.33 kernel source" "on" \
2> $TMP/SeTpkgs
if [ $? = 1 -o $? = 255 ]; then
rm -f $TMP/SeTpkgs
> $TMP/SeTnewtag
for pkg in \
kernel-source \
; do
echo "$pkg: SKP" >> $TMP/SeTnewtag
done
exit
fi
cat /dev/null > $TMP/SeTnewtag
for PACKAGE in \
kernel-source \
; do
if grep "\(^\| \)$PACKAGE\( \|$\)" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then
echo "$PACKAGE: ADD" >> $TMP/SeTnewtag
else
echo "$PACKAGE: SKP" >> $TMP/SeTnewtag
fi
done
rm -f $TMP/SeTpkgs