Install `OpenJDK 8` for Ubuntu 22.04.
This commit is contained in:
parent
a86939bbb2
commit
a661d3cf0d
|
@ -25,6 +25,13 @@ link '/usr/local/bin/embulk' do
|
||||||
force true
|
force true
|
||||||
end
|
end
|
||||||
|
|
||||||
package 'default-jre' do
|
case node['platform_version'].to_f
|
||||||
action :install
|
when 22.04
|
||||||
|
package 'openjdk-8-jre' do
|
||||||
|
action :install
|
||||||
|
end
|
||||||
|
else
|
||||||
|
package 'default-jre' do
|
||||||
|
action :install
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue