]> git.openstreetmap.org Git - chef.git/commitdiff
chef: on Debian ARM use Ubuntu deb
authorGrant Slater <github@firefishy.com>
Tue, 28 Nov 2023 10:15:30 +0000 (10:15 +0000)
committerGrant Slater <github@firefishy.com>
Tue, 28 Nov 2023 10:15:30 +0000 (10:15 +0000)
cookbooks/chef/recipes/default.rb

index 91a91001c3d4254e6bfc9db199e7c6688166acb0..befce968cd5d69cf3de151678d57f14e957caec8 100644 (file)
@@ -33,6 +33,18 @@ chef_arch = if arm?
               "amd64"
             end
 
+os_release = if platform?("debian") && node[:lsb][:release].to_f > 11
+               11
+             else
+               node[:lsb][:release]
+             end
+
+# Chef is currently not available for Debian 11 on arm64.
+if chef_platform == "debian" && os_release == 11 && chef_arch == "arm64"
+  chef_platform = "ubuntu"
+  os_release = "22.04"
+end
+
 chef_package = "chef_#{chef_version}-1_#{chef_arch}.deb"
 
 directory "/var/cache/chef" do
@@ -49,12 +61,6 @@ Dir.glob("#{cache_dir}/chef_*.deb").each do |deb|
   end
 end
 
-os_release = if platform?("debian") && node[:lsb][:release].to_f > 11
-               11
-             else
-               node[:lsb][:release]
-             end
-
 remote_file "#{cache_dir}/#{chef_package}" do
   source "https://packages.chef.io/files/stable/chef/#{chef_version}/#{chef_platform}/#{os_release}/#{chef_package}"
   owner "root"