diff --git a/cluster/aws/templates/format-disks.sh b/cluster/aws/templates/format-disks.sh index 00e251c5469..9f3c7b9a978 100644 --- a/cluster/aws/templates/format-disks.sh +++ b/cluster/aws/templates/format-disks.sh @@ -164,7 +164,8 @@ if [[ ${docker_storage} == "btrfs" ]]; then DOCKER_OPTS="${DOCKER_OPTS} -s btrfs" elif [[ ${docker_storage} == "aufs-nolvm" || ${docker_storage} == "aufs" ]]; then # Install aufs kernel module - apt-get install --yes linux-image-extra-$(uname -r) + # Fix issue #14162 with extra-virtual + apt-get install --yes linux-image-extra-$(uname -r) linux-image-extra-virtual # Install aufs tools apt-get install --yes aufs-tools