tomcat.rb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Cookbook Name:: application
  3. # Recipe:: tomcat
  4. #
  5. # Copyright 2010, Opscode, Inc.
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. #
  19. Chef::Log.warn "The application::tomcat recipe is deprecated and will go away on Aug 1st. See the README for migration information."
  20. app = node.run_state[:current_app]
  21. include_recipe "tomcat"
  22. # remove ROOT application
  23. # TODO create a LWRP to enable/disable tomcat apps
  24. directory "#{node['tomcat']['webapp_dir']}/ROOT" do
  25. recursive true
  26. action :delete
  27. not_if "test -L #{node['tomcat']['context_dir']}/ROOT.xml"
  28. end
  29. link "#{node['tomcat']['context_dir']}/ROOT.xml" do
  30. to "#{app['deploy_to']}/shared/#{app['id']}.xml"
  31. notifies :restart, resources(:service => "tomcat")
  32. end
  33. if ::File.symlink?(::File.join(node['tomcat']['context_dir'], "ROOT.xml"))
  34. d = resources(:remote_file => app['id'])
  35. d.notifies :restart, resources(:service => "tomcat")
  36. end