LoginSignup
5
6

More than 5 years have passed since last update.

vagrant-omnibusでChefが入ってないboxでもプロビジョニング

Posted at

Chefが入っていないBoxの場合、vagrant upやvagrant provisionしようとしても、できません。

ChefをインストールしてBox作り直しは手間なのですが、vagrant-omnibusのプラグインを利用すれば、Chefのインストールをprovision前にしてくれます。

インストール方法

vagrant plugin install vagrant-omnibus

Vagrantfile

Vagrant.configure("2") do |config|
  config.omnibus.chef_version = "11.12.8"

  その他の設定

end

reloadしろって言われたら実行

vagrant reload
5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6