We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e87932 commit a47bc34Copy full SHA for a47bc34
lib/common.sh
@@ -989,6 +989,15 @@ function fetch_kernel_from_apt_for_version() {
989
"linux-headers-${kernel_version}" \
990
"linux-tools-${kernel_version}"
991
992
+ #
993
+ # For the azure kernel, we also want to get the linux-cloud-tools
994
+ # package. Not that we cannot do this indiscriminately since some
995
+ # kernel flavors do not come with a linux-cloud-tools package.
996
997
+ if [[ "$kernel_version" == *azure ]]; then
998
+ logmust apt-get download "linux-cloud-tools-${kernel_version}"
999
+ fi
1000
+
1001
#
1002
# Fetch direct dependencies of the downloaded debs. Some of those
1003
# dependencies have a slightly different naming scheme than the other
0 commit comments