我尝试在centos机器上安装“ca-certificates”。输出说“最新”
然后我尝试使用厨师更新ca-trust密钥环。它引发了一个错误:No such file or directory update-ca-trust force-enable
。
之后我尝试通过执行资源yum install -y ca-certificates
安装证书并安装它并更新了ca-trust。
为什么厨师不能先安装包并说它已更新?
以下是我在食谱中所写的内容
#Installing CA certificate
package "ca-certificates" do #also tried with yum_package
action :install
flush_cache [:before]
end