From 0ead2d8fd20c3848cf6b68de2c7726358f37d5e6 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Thu, 28 Feb 2019 23:33:52 +0000 Subject: [PATCH 1/1] Install linux-tools as part of kernel packages --- cookbooks/hardware/recipes/default.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/cookbooks/hardware/recipes/default.rb b/cookbooks/hardware/recipes/default.rb index 739901cf0..b74d4235a 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -109,6 +109,7 @@ if node[:hardware][:grub][:kernel] package "linux-image-#{kernel_version}-generic" package "linux-image-extra-#{kernel_version}-generic" package "linux-headers-#{kernel_version}-generic" + package "linux-tools-#{kernel_version}-generic" boot_device = IO.popen(["df", "/boot"]).readlines.last.split.first boot_uuid = IO.popen(["blkid", "-o", "value", "-s", "UUID", boot_device]).readlines.first.chomp -- 2.43.2