diff --git a/vm/chef/cookbooks/tomcat/attributes/default.rb b/vm/chef/cookbooks/tomcat/attributes/default.rb index 1011c82dd0..6fb03a975b 100644 --- a/vm/chef/cookbooks/tomcat/attributes/default.rb +++ b/vm/chef/cookbooks/tomcat/attributes/default.rb @@ -12,8 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -default['tomcat']['version'] = '10.1.20' -default['tomcat']['sha256'] = '8427c5509f14e482940a015f3f60de20342d3d72c8dea9982a4d7112cb71a6ee' +default['tomcat']['version'] = '11.0.0' +default['tomcat']['sha256'] = 'd0ca319af349838f59009a9c5ed3709f02344201059dbc26dce4313ee969cd20' default['tomcat']['app']['install_dir'] = '/opt/tomcat' diff --git a/vm/chef/cookbooks/tomcat/recipes/default.rb b/vm/chef/cookbooks/tomcat/recipes/default.rb index cb4fe1bcd8..21e8e28c0e 100644 --- a/vm/chef/cookbooks/tomcat/recipes/default.rb +++ b/vm/chef/cookbooks/tomcat/recipes/default.rb @@ -61,7 +61,7 @@ # Download tomcat. remote_file '/tmp/tomcat.tar.gz' do - source "https://archive.apache.org/dist/tomcat/tomcat-10/v#{node['tomcat']['version']}/bin/apache-tomcat-#{node['tomcat']['version']}.tar.gz" + source "https://archive.apache.org/dist/tomcat/tomcat-11/v#{node['tomcat']['version']}/bin/apache-tomcat-#{node['tomcat']['version']}.tar.gz" verify "echo '#{node['tomcat']['sha256']} %{path}' | sha256sum -c" action :create end