mirror of
https://gitlab.com/redhat/centos-stream/rpms/conmon.git
synced 2026-05-04 23:42:20 +00:00
ee8d49cc5e
1) Ugh. Update the podman test scaffolding so it invokes
the magic 'loginctl enable-linger' command necessary
for rootless podman to work.
1a) [minor] update the rpm-versions and environment dump
2) Bring gating.yaml up-to-date, including (ugh) duplication
that will help us avoid maintenance burden when we fork f33
Signed-off-by: Ed Santiago <santiago@redhat.com>
18 lines
395 B
Bash
Executable File
18 lines
395 B
Bash
Executable File
#!/bin/bash -e
|
|
#
|
|
# Simple podman tests
|
|
#
|
|
|
|
# Log program and kernel versions
|
|
echo "Important package versions:"
|
|
(
|
|
uname -r
|
|
rpm -qa | egrep 'podman|conmon|crun|runc|iptable|slirp|systemd|container-selinux' | sort
|
|
) | sed -e 's/^/ /'
|
|
|
|
# Log environment; or at least the useful bits
|
|
echo "Environment:"
|
|
env | grep -v LS_COLORS= | sort | sed -e 's/^/ /'
|
|
|
|
bats /usr/share/podman/test/system
|