16be6d7ce0
As with the previous similar changes, this is intended to catch problems as they happen instead of ignoring them and continuing on to potentially fail later. Setting this on all existing scripts will allow us to enforce use via Jenkins. Change-Id: Iad2d490c86dceab148ea9ab08f457c49a5d5352e
16 lines
334 B
Bash
Executable File
16 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
# The grub post-kernel install hook will barf if the block device can't be
|
|
# found (as happens in a chroot).
|
|
# Temporarily remove grub, to avoid that confusion.
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if dpkg-query -W grub-pc; then
|
|
apt-get -y remove grub-pc
|
|
fi
|
|
|
|
if dpkg-query -W grub2-common; then
|
|
apt-get -y remove grub2-common
|
|
fi
|