diff options
author | Robby Russell <robby@planetargon.com> | 2014-05-16 09:33:23 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-05-16 09:33:23 -0700 |
commit | 3913106b2e7127d396f27b652df812340ec0c871 (patch) | |
tree | b40cc1e238d209cb8b958064565218519211afee | |
parent | eafd5f325208421b82a770e57441dd1063eb5745 (diff) | |
parent | 8ed800510262157adab151cad12959095a5a1b62 (diff) | |
download | zsh-3913106b2e7127d396f27b652df812340ec0c871.tar.gz zsh-3913106b2e7127d396f27b652df812340ec0c871.tar.bz2 zsh-3913106b2e7127d396f27b652df812340ec0c871.zip |
Merge pull request #2787 from irnnr/plugin-vagrant
Support new Vagrant commands
-rw-r--r-- | plugins/vagrant/_vagrant | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant index d55ae6709..e05b16f81 100644 --- a/plugins/vagrant/_vagrant +++ b/plugins/vagrant/_vagrant @@ -6,19 +6,24 @@ local -a _1st_arguments _1st_arguments=( 'box:Box commands' + 'connect:Connects to a shared, remote Vagrant environment' 'destroy:Destroys the vagrant environment' + 'global-status:Reports the status of all active Vagrant environments on the system' 'halt:Halts the currently running vagrant environment' 'init:[box_name] [box_url] Initializes current folder for Vagrant usage' + 'login:Authenticates against a Vagrant Cloud server to access protected boxes' 'package:Packages a vagrant environment for distribution' 'plugin:Plugin commands' '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.' + 'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh' + 'status:Shows the status of the current Vagrant environment' 'suspend:Suspends the currently running vagrant environment' 'up:Creates the vagrant environment' + 'version:Prints the currently installed Vagrant version and checks for new updates' '--help:[TASK] Describe available tasks or one specific task' '--version:Prints the Vagrant version information' ) |