Vagrantプラグイン

公式プラグイン一覧

Available Vagrant Plugins
https://github.com/hashicorp/vagrant/wiki/Available-Vagrant-Plugins

Vagrantプラグインの開発方法

Plugin Development Basics

rubyで作成します。

Vagrantプラグインのコマンド

コマンド用途記述法
expunge削除vagrant plugin expunge
installインストールvagrant plugin install <name>
licenseライセンスvagrant plugin license <name> <license-file>
list一覧vagrant plugin list
repair修復vagrant plugin repair
uninstallアンインストールvagrant plugin uninstall <name> [<name2> <name3> ...]
update更新vagrant plugin update [names...]

Vagrantプラグインのコマンドのヘルプ一覧

> vagrant plugin -h
Usage: vagrant plugin <command> [<args>]

Available subcommands:
     expunge
     install
     license
     list
     repair
     uninstall
     update

For help on any individual command run `vagrant plugin COMMAND -h`
> vagrant plugin expunge -h
Usage: vagrant plugin expunge [-h]
        --force                      Do not prompt for confirmation
        --local                      Include plugins from local project for expunge
        --local-only                 Only expunge local project plugins
        --global-only                Only expunge global plugins
        --reinstall                  Reinstall current plugins after expunge
    -h, --help                       Print this help
> vagrant plugin install -h
Usage: vagrant plugin install <name>... [-h]

        --entry-point NAME           The name of the entry point file for loading the plugin.
        --plugin-clean-sources       Remove all plugin sources defined so far (including defaults)
        --plugin-source PLUGIN_SOURCE
                                     Add a RubyGems repository source
        --plugin-version PLUGIN_VERSION
                                     Install a specific version of the plugin
        --local                      Install plugin for local project only
        --verbose                    Enable verbose output for plugin installation
    -h, --help                       Print this help
> vagrant plugin license -h
Usage: vagrant plugin license <name> <license-file> [-h]
    -h, --help                       Print this help
> vagrant plugin list -h
Usage: vagrant plugin list [-h]
        --local                      Include local project plugins
    -h, --help                       Print this help
> vagrant plugin repair -h
Usage: vagrant plugin repair [-h]
        --local                      Repair plugins in local project
    -h, --help                       Print this help
> vagrant plugin uninstall -h
Usage: vagrant plugin uninstall <name> [<name2> <name3> ...] [-h]
        --local                      Remove plugin from local project
    -h, --help                       Print this help
> vagrant plugin update -h
Usage: vagrant plugin update [names...] [-h]

        --local                      Update plugin in local project
    -h, --help                       Print this help

関連記事

スポンサーリンク

iwconfig 無線LANインタフェースの参照・設定

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る