TypeError:使用remote_file下载文件时不能复制NilClass

时间:2015-02-06 18:17:08

标签: chef chef-recipe chef-solo

我正在尝试从http服务器下载文件(用于java安装)。我的食谱中有以下内容。

remote_file "Downloading Java from: #{dl_url}" do
    source  dl_url
    path    java_dlfile
    owner   user
    group   group
    mode    0664
    backup false
    action :create_if_missing
    not_if { Dir.exists?(java_home) }
end 

http://opscics.com/1.2.0__jdk-7u55-fcs-bin-b13-linux-x64-17_mar_2014.tar.gz

投掷下载java

TypeError:无法复制NilClass

该文件在该位置可用&我可以访问它&从我的浏览器下载。

可能是什么问题。

1 个答案:

答案 0 :(得分:0)

我发现了。在网址中的http:之后丢失了一个/。感谢。