Cirrus: Avoid upgrading grub-efi-amd64-signed
Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
parent
305cc433fd
commit
ed27f581ca
|
|
@ -99,6 +99,9 @@ RPMS_CONFLICTING="gcc-go"
|
|||
# https://github.com/containers/libpod/blob/master/contrib/cirrus/packer/ubuntu_setup.sh
|
||||
DEBS_REQUIRED="parallel"
|
||||
DEBS_CONFLICTING=""
|
||||
# Upgrading grub-efi-amd64-signed doesn't make sense at test-runtime
|
||||
# and has some config. scripts which frequently fail. Block updates
|
||||
DEBS_HOLD="grub-efi-amd64-signed"
|
||||
|
||||
# For devicemapper testing, device names need to be passed down for use in tests
|
||||
if [[ "$TEST_DRIVER" == "devicemapper" ]]; then
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ case "$OS_RELEASE_ID" in
|
|||
;;
|
||||
ubuntu)
|
||||
$SHORT_APTGET update # Fetch latest package metadata
|
||||
[[ -z "$DEBS_HOLD" ]] || \
|
||||
apt-mark hold $DEBS_HOLD
|
||||
$LONG_APTGET upgrade # install latest packages
|
||||
[[ -z "$DEBS_REQUIRED" ]] || \
|
||||
$SHORT_APTGET -q install $DEBS_REQUIRED
|
||||
|
|
|
|||
Loading…
Reference in New Issue