无法为 tomcat7/webapps 中部署的 war 文件设置 jdoconfig.xml 和 appname.properties 模板

Unable to set jdoconfig.xml and appname.properties templates for the war file deployed in tomcat7/webapps

食谱:

include_recipe "lgjava"
include_recipe "lgtomcat"


remote_file "/usr/local/tomcat7/webapps/web.war" do  #this file places web.war in the specified path
  source "http://path/to/web.war"
  action :create_if_missing
end


template "jdoconfig.xml" do
  source "jdoconfig.xml.erb"
  path "/usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF/jdoconfig.xml"
  action :create_if_missing
  mode "0755"
end

template "appname.properties" do
  source "appname.properties.erb"
  path "/usr/local/tomcat7/webapps/web/WEB-INF/classes/appname.properties"
  action :create_if_missing
  mode "0755"
end

执行:

 Recipe: lgwebapp::default

  * remote_file[/usr/local/tomcat7/webapps/web.war] action create_if_missing
    - create new file /usr/local/tomcat7/webapps/web.war
    - update content in file /usr/local/tomcat7/webapps/web.war from none to ac4b77
    (file sizes exceed 10000000 bytes, diff output suppressed)
    - restore selinux security context

  * template[jdoconfig.xml] action create_if_missing
    * Parent directory /usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF does not exist.

    ================================================================================
    Error executing action `create_if_missing` on resource 'template[jdoconfig.xml]'
    ================================================================================

    Chef::Exceptions::EnclosingDirectoryDoesNotExist
    ------------------------------------------------
    Parent directory /usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF does not exist.

    Resource Declaration:
    ---------------------
    # In /var/chef/cache/cookbooks/lgwebapp/recipes/default.rb

         20: template "jdoconfig.xml" do
         21:   source "jdoconfig.xml.erb"
         22:   path "/usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF/jdoconfig.xml"
         23:   action :create_if_missing
         24:   mode "0755"
         25: end
         26: 

    Compiled Resource:
    ------------------
        # Declared in /var/chef/cache/cookbooks/lgwebapp/recipes/default.rb:20:in `from_file'

        template("jdoconfig.xml") do
          provider Chef::Provider::Template
          action [:create_if_missing]
          retries 0
          retry_delay 2
          guard_interpreter :default
          path "/usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF/jdoconfig.xml"
          backup 5
          atomic_update true
          source "jdoconfig.xml.erb"
          cookbook_name "lgwebapp"
          recipe_name "default"
          mode "0755"
        end

Recipe: lgtomcat::default
  * service[tomcat7] action restart
    - restart service service[tomcat7]

Running handlers:
[2015-01-14T10:38:44+00:00] ERROR: Running exception handlers
Running handlers complete

[2015-01-14T10:38:44+00:00] ERROR: Exception handlers complete

[2015-01-14T10:38:44+00:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
Chef Client failed. 6 resources updated in 6.532117395 seconds

[2015-01-14T10:38:44+00:00] ERROR: template[jdoconfig.xml] (lgwebapp::default line 20) had an error: Chef::Exceptions::EnclosingDirectoryDoesNotExist: Parent directory /usr/local/tomcat7/webapps/web/WEB-INF/classes/META-INF does not exist.

[2015-01-14T10:38:44+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)

P.S:web.war 文件部署在 tomcat7/webapps 下,它也已提取。我手动检查了一下,该文件存在于特定位置。为什么使用'templates'无法定位?

取为流:

Chef 部署 war 然后呈现模板并尝试与现有文件进行比较。

问题是当 chef 试图获取目标文件信息时,Tomcat 可能根本还没有解压 war 文件。

我们使用 tomcat 中的 ark 资源进行这种部署,呈现模板,然后复制或 link(视情况而定)临时部署目录到 webapps tomcat目录

下面的代码解决了我的问题:

ruby_block 'wait for tomcat' do
  block do
   true until ::File.exists?("#{node['webapp']['webinf_dir']}")
  end
end