diff options
author | Ingo Renner <ingo.renner@gmail.com> | 2014-05-06 10:46:55 -0700 |
---|---|---|
committer | Ingo Renner <ingo.renner@gmail.com> | 2014-05-06 10:46:55 -0700 |
commit | 38fe100efe9b7d4df87746818bae508c4c00d4a6 (patch) | |
tree | 39daf7ebfec3b793c081c187951a4bf675135cd8 /plugins | |
parent | 236c8de7f31a71878279ed2421bd2547ab3cdd03 (diff) | |
download | zsh-38fe100efe9b7d4df87746818bae508c4c00d4a6.tar.gz zsh-38fe100efe9b7d4df87746818bae508c4c00d4a6.tar.bz2 zsh-38fe100efe9b7d4df87746818bae508c4c00d4a6.zip |
[FEATURE] Support Vagrant Share
Vagrant 1.5 introduced Vagrant Share to allow remote access to a Vagrant
environment. This adds support for the `share` and `connect` commands.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/vagrant/_vagrant | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant index f9aef0880..7bdfb0f1c 100644 --- a/plugins/vagrant/_vagrant +++ b/plugins/vagrant/_vagrant @@ -6,6 +6,7 @@ local -a _1st_arguments _1st_arguments=( 'box:Box commands' + 'connect:Connects to a shared, remote Vagrant environment' 'destroy:Destroys the vagrant environment' 'halt:Halts the currently running vagrant environment' 'init:[box_name] [box_url] Initializes current folder for Vagrant usage' @@ -14,6 +15,7 @@ _1st_arguments=( 'provision:Run the provisioner' 'reload:Reload the vagrant environment' 'resume:Resumes a suspend vagrant environment' + 'share:Shares the Vagrant environment and allows remote access' 'ssh:SSH into the currently running environment' 'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh.' 'status:Shows the status of the current Vagrant environment.' |