You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 19, 2020. It is now read-only.
This recipe started throwing FC005 errors when we changed the file location from using a local variable, catalina_base, to the chef attribute accessor node['bke_tomcat']['catalina_base'].
This recipe started throwing FC005 errors when we changed the file location from using a local variable, catalina_base, to the chef attribute accessor node['bke_tomcat']['catalina_base'].
`remote_file "#{node['bke_tomcat']['catalina_base']}/cas/lib/memcached-session-manager-1.9.1.jar" do
source 'http://repo1.maven.org/maven2/de/javakaffee/msm/memcached-session-manager/1.9.1/memcached-session-manager-1.9.1.jar'
owner 'root'
group 'root'
mode '0644'
action :create
end
remote_file "#{node['bke_tomcat']['catalina_base']}/cas/lib/memcached-session-manager-tc8-1.9.1.jar" do
source 'http://repo1.maven.org/maven2/de/javakaffee/msm/memcached-session-manager-tc8/1.9.1/memcached-session-manager-tc8-1.9.1.jar'
owner 'root'
group 'root'
mode '0644'
action :create
end
remote_file "#{node['bke_tomcat']['catalina_base']}/cas/lib/spymemcached-2.11.1.jar" do
source 'http://central.maven.org/maven2/net/spy/spymemcached/2.11.1/spymemcached-2.11.1.jar'
owner 'root'
group 'root'
mode '0644'
action :create
end`
The text was updated successfully, but these errors were encountered: