forked from puppetlabs/vmfloaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfloaty.zsh
37 lines (28 loc) · 883 Bytes
/
floaty.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
_floaty()
{
local line subcommands template_subcommands hostname_subcommands
subcommands="delete get help list modify query revert snapshot ssh status summary token"
template_subcommands=("get" "ssh")
hostname_subcommands=("delete" "modify" "query" "revert" "snapshot")
_arguments -C \
"1: :(${subcommands})" \
"*::arg:->args"
if ((template_subcommands[(Ie)$line[1]])); then
_floaty_template_sub
elif ((hostname_subcommands[(Ie)$line[1]])); then
_floaty_hostname_sub
fi
}
_floaty_template_sub()
{
if [[ -z "$_vmfloaty_avail_templates" ]] ; then
_vmfloaty_avail_templates=$(floaty list 2>/dev/null)
fi
_arguments "1: :(${_vmfloaty_avail_templates})"
}
_floaty_hostname_sub()
{
_vmfloaty_active_hostnames=$(floaty list --active --hostnameonly 2>/dev/null)
_arguments "1: :(${_vmfloaty_active_hostnames})"
}
compdef _floaty floaty