added global-status.

This commit is contained in:
withgod 2014-06-13 13:56:26 +09:00
parent 3280bc4274
commit ff5a0d6d5f
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ local -a _1st_arguments
_1st_arguments=(
'box:Box commands'
'destroy:Destroys the vagrant environment'
'global-status:Shows the status of the global Vagrant environment.'
'halt:Halts the currently running vagrant environment'
'help:[TASK] Describe available tasks or one specific task'
'init:[box_name] [box_url] Initializes current folder for Vagrant usage'
@ -60,7 +61,7 @@ __task_list ()
local expl
local -a tasks
tasks=(box destroy halt init package plugin provision reload resume ssh ssh_config status suspend up version)
tasks=(box destroy global-status halt init package plugin provision reload resume ssh ssh_config status suspend up version)
_wanted tasks expl 'help' compadd $tasks
}