Merge pull request #21759 from Luap99/package-log-list

cirrus logcollector: update package list
This commit is contained in:
openshift-merge-bot[bot]
2024-02-20 18:29:35 +00:00
committed by GitHub

View File

@ -36,13 +36,15 @@ case $1 in
packages) packages)
# These names are common to Fedora and Debian # These names are common to Fedora and Debian
PKG_NAMES=(\ PKG_NAMES=(\
aardvark-dns
buildah buildah
conmon conmon
containernetworking-plugins containernetworking-plugins
containers-common
criu criu
crun crun
golang golang
netavark
passt
podman podman
runc runc
skopeo skopeo
@ -53,18 +55,17 @@ case $1 in
cat /etc/fedora-release cat /etc/fedora-release
PKG_LST_CMD='rpm -q --qf=%{N}-%{V}-%{R}-%{ARCH}\n' PKG_LST_CMD='rpm -q --qf=%{N}-%{V}-%{R}-%{ARCH}\n'
PKG_NAMES+=(\ PKG_NAMES+=(\
aardvark-dns
container-selinux container-selinux
containers-common
libseccomp libseccomp
netavark
passt
) )
;; ;;
debian) debian)
cat /etc/issue cat /etc/issue
PKG_LST_CMD='dpkg-query --show --showformat=${Package}-${Version}-${Architecture}\n' PKG_LST_CMD='dpkg-query --show --showformat=${Package}-${Version}-${Architecture}\n'
PKG_NAMES+=(\ PKG_NAMES+=(\
cri-o-runc golang-github-containers-common
golang-github-containers-image
libseccomp2 libseccomp2
) )
;; ;;