Honza Pokorny
Honza Pokorny

Reputation: 3235

Chef ignores apt-get update

I'm using chef in vagrant to provision a precise32 VM.

The command:

execute "apt-get update" do
    command "apt-get update"
end

Seems to take no effect.

Vagrant 1.0.3 Virtualbox 4.1.18

Upvotes: 1

Views: 2367

Answers (1)

mhaligowski
mhaligowski

Reputation: 2222

adding this recipe worked for me (it's an "official" one): https://github.com/opscode-cookbooks/apt

Upvotes: 3

Related Questions