mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Cirrus: Ubuntu: Set + Test for $RUNC_BINARY
Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
@ -4,26 +4,26 @@ set -eo pipefail
|
||||
|
||||
source $(dirname $0)/lib.sh
|
||||
|
||||
RET=0
|
||||
NFAILS=0
|
||||
echo "Validating VM image"
|
||||
|
||||
MIN_SLASH_GIGS=50
|
||||
read SLASH_DEVICE SLASH_FSTYPE SLASH_SIZE JUNK <<<$(findmnt --df --first-only --noheadings / | cut -d '.' -f 1)
|
||||
SLASH_SIZE_GIGS=$(echo "$SLASH_SIZE" | sed -r -e 's/G|g//')
|
||||
item_test "Minimum available disk space" $SLASH_SIZE_GIGS -gt $MIN_SLASH_GIGS || let "RET+=1"
|
||||
item_test "Minimum available disk space" $SLASH_SIZE_GIGS -gt $MIN_SLASH_GIGS || let "NFAILS+=1"
|
||||
|
||||
MIN_MEM_MB=2000
|
||||
read JUNK TOTAL USED MEM_FREE JUNK <<<$(free -tm | tail -1)
|
||||
item_test 'Minimum available memory' $MEM_FREE -ge $MIN_MEM_MB || let "RET+=1"
|
||||
item_test 'Minimum available memory' $MEM_FREE -ge $MIN_MEM_MB || let "NFAILS+=1"
|
||||
|
||||
# We're testing a custom-built podman; make sure there isn't a distro-provided
|
||||
# binary anywhere; that could potentially taint our results.
|
||||
item_test "remove_packaged_podman_files() did it's job" -z "$(type -P podman)" || let "RET+=1"
|
||||
item_test "remove_packaged_podman_files() did it's job" -z "$(type -P podman)" || let "NFAILS+=1"
|
||||
|
||||
MIN_ZIP_VER='3.0'
|
||||
VER_RE='.+([[:digit:]]+\.[[:digit:]]+).+'
|
||||
ACTUAL_VER=$(zip --version 2>&1 | egrep -m 1 "Zip$VER_RE" | sed -r -e "s/$VER_RE/\\1/")
|
||||
item_test "minimum zip version" "$MIN_ZIP_VER" = $(echo -e "$MIN_ZIP_VER\n$ACTUAL_VER" | sort -V | head -1) || let "RET+=1"
|
||||
item_test "minimum zip version" "$MIN_ZIP_VER" = $(echo -e "$MIN_ZIP_VER\n$ACTUAL_VER" | sort -V | head -1) || let "NFAILS+=1"
|
||||
|
||||
for REQ_UNIT in google-accounts-daemon.service \
|
||||
google-clock-skew-daemon.service \
|
||||
@ -33,15 +33,21 @@ for REQ_UNIT in google-accounts-daemon.service \
|
||||
google-startup-scripts.service
|
||||
do
|
||||
item_test "required $REQ_UNIT enabled" \
|
||||
"$(systemctl list-unit-files --no-legend $REQ_UNIT)" = "$REQ_UNIT enabled" || let "RET+=1"
|
||||
"$(systemctl list-unit-files --no-legend $REQ_UNIT)" = "$REQ_UNIT enabled" || let "NFAILS+=1"
|
||||
done
|
||||
|
||||
for evil_unit in $EVIL_UNITS
|
||||
do
|
||||
# Exits zero if any unit matching pattern is running
|
||||
unit_status=$(systemctl is-active $evil_unit &> /dev/null; echo $?)
|
||||
item_test "No $evil_unit unit is present or active:" "$unit_status" -ne "0" || let "RET+=1"
|
||||
item_test "No $evil_unit unit is present or active:" "$unit_status" -ne "0" || let "NFAILS+=1"
|
||||
done
|
||||
|
||||
echo "Total failed tests: $RET"
|
||||
exit $RET
|
||||
if [[ "$OS_RELEASE_ID" == "ubuntu" ]] && [[ -x "/usr/lib/cri-o-runc/sbin/runc" ]]
|
||||
then
|
||||
SAMESAME=$(diff --brief /usr/lib/cri-o-runc/sbin/runc /usr/bin/runc &> /dev/null; echo $?)
|
||||
item_test "On ubuntu /usr/bin/runc is /usr/lib/cri-o-runc/sbin/runc" "$SAMESAME" -eq "0" || let "NFAILS+=1"
|
||||
fi
|
||||
|
||||
echo "Total failed tests: $NFAILS"
|
||||
exit $NFAILS
|
||||
|
@ -34,7 +34,14 @@ done
|
||||
# (see docs).
|
||||
cd "${GOSRC}/"
|
||||
case "${OS_REL_VER}" in
|
||||
ubuntu-18) ;;
|
||||
ubuntu-18)
|
||||
CRIO_RUNC_PATH="/usr/lib/cri-o-runc/sbin/runc"
|
||||
if dpkg -L cri-o-runc | grep -m 1 -q "$CRIO_RUNC_PATH"
|
||||
then
|
||||
echo "Linking $CRIO_RUNC_PATH to /usr/bin/runc for ease of testing."
|
||||
ln -f "$CRIO_RUNC_PATH" "/usr/bin/runc"
|
||||
fi
|
||||
;;
|
||||
fedora-30) ;;
|
||||
fedora-29) ;;
|
||||
centos-7) # Current VM is an image-builder-image no local podman/testing
|
||||
|
Reference in New Issue
Block a user