Vagrant + Chef + apt:是否可以在Ubuntu VM上安装特定版本的deb软件包?

时间:2012-05-09 18:27:54

标签: ubuntu chef apt vagrant

我正在使用Vagrant with Chef来构建一个Ubuntu 12.04虚拟机。我正在使用这里的opscode cookbook:https://github.com/opscode/cookbooks

我想使用opscode apt cookbook来安装软件包。我想确保它安装特定版本的软件包,以确保构建环境一致。以下是我正在尝试做的一个例子:

package "git" do
  action :install
end

我知道如果你从命令行使用apt安装软件包,你可以像这样指定版本:

apt-get install git=1:1.7.9.5-1

但我无法通过食谱弄清楚如何做到这一点。这可能吗?

1 个答案:

答案 0 :(得分:13)

我想我明白了。这很简单:

package "git" do
  version "1:1.7.9.5-1"
  action :install
end