Vagrant プラグインをアップデートする

Vagrant プラグインをアップデートする

Vagrantで、プラグインをアップデートする手順を記述してます。「 plugin update 」コマンドでアップデートしたいプラグインを指定することで可能です。

環境

  • OS windows10 pro
  • Vagrant 2.3.1

プラグインをアップデート

プラグインをアップデートするには、「 plugin update 」コマンドを使用します。

> vagrant plugin update [プラグイン名,プラグイン名...]

実際に、アップデートしてみます。

> vagrant plugin update [vagrant-hostmanager,vagrant-vbguest]

Updating plugins: [vagrant-hostmanager,vagrant-vbguest]. This may take a few minutes...
All plugins are up to date.

最新であったことが確認できます。

全てアップデータ

「 プラグイン名 」を省略した場合は、全てアップデートされます。

> vagrant plugin update

Updating installed plugins...
All plugins are up to date.