From baa61c14da0e91e7c7015438da034d6a6806904b Mon Sep 17 00:00:00 2001 From: Christian Stewart Date: Wed, 21 Oct 2015 16:31:13 -0400 Subject: [PATCH] cluster/aws: Fix #14162 reboot docker failure Fixes AWS ubuntu deployment due to extra-$(uname) vs extra-virtual package being installed. See issue #14162 Signed-off-by: Christian Stewart --- cluster/aws/templates/format-disks.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cluster/aws/templates/format-disks.sh b/cluster/aws/templates/format-disks.sh index 102e092f674..cb521f9e985 100644 --- a/cluster/aws/templates/format-disks.sh +++ b/cluster/aws/templates/format-disks.sh @@ -172,7 +172,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