Merge pull request #1000 from vsannikov/fix-virtualbox-medium

Fix virtualbox medium-related commands
This commit is contained in:
Shohei YOSHIDA 2023-02-22 18:41:50 +09:00 committed by GitHub
commit d71ddaa6eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -172,7 +172,7 @@ _vboxmanage() {
_arguments \ _arguments \
'--delete[Deletes the image file]' \ '--delete[Deletes the image file]' \
'1:type:(disk dvd floppy)' \ '1:type:(disk dvd floppy)' \
'*:file:_files' \ '2:file:_files' \
&& ret=0 && ret=0
;; ;;
(storageattach) (storageattach)
@ -224,7 +224,7 @@ _vboxmanage() {
(showmediuminfo) (showmediuminfo)
_arguments \ _arguments \
'1:medium:(disk dvd floppy)' \ '1:medium:(disk dvd floppy)' \
'2:machine:_vboxmachines' \ '2: :_files' \
&& ret=0 && ret=0
;; ;;
(createmedium) (createmedium)
@ -252,7 +252,7 @@ _vboxmanage() {
'--setlocation=[Specifies the new location of the medium]: :_files' \ '--setlocation=[Specifies the new location of the medium]: :_files' \
'--type=[Specifies the new mode type of an existing image]: :(normal immutable writethrough multi-attach shareable readonly)' \ '--type=[Specifies the new mode type of an existing image]: :(normal immutable writethrough multi-attach shareable readonly)' \
'1:medium:(disk dvd floppy)' \ '1:medium:(disk dvd floppy)' \
'2:machine:_vboxmachines' \ '2: :_files' \
&& ret=0 && ret=0
;; ;;
(clonemedium) (clonemedium)
@ -261,8 +261,8 @@ _vboxmanage() {
'--format=[Specifies the file format of the target medium]: :(VDI VMDK VHD RAW)' \ '--format=[Specifies the file format of the target medium]: :(VDI VMDK VHD RAW)' \
'--variant=[Specifies the file format variant for the target medium]:variant' \ '--variant=[Specifies the file format variant for the target medium]:variant' \
'1:medium:(disk dvd floppy)' \ '1:medium:(disk dvd floppy)' \
'2:machine:_vboxmachines' \ '2: :_files' \
'3:machine:_vboxmachines' \ '3: :_files' \
&& ret=0 && ret=0
;; ;;
(encryptmedium) (encryptmedium)
@ -271,7 +271,7 @@ _vboxmanage() {
'--oldpassword=[Specifies the original encryption password]:password' \ '--oldpassword=[Specifies the original encryption password]:password' \
'--cipher=[Specifies the cipher to use for encryption]: :(AES-XTS128-PLAIN64 AES-XTS256-PLAIN64)' \ '--cipher=[Specifies the cipher to use for encryption]: :(AES-XTS128-PLAIN64 AES-XTS256-PLAIN64)' \
'--newpasswordid=[Specifies a new password identifier]:password' \ '--newpasswordid=[Specifies a new password identifier]:password' \
'1:machine:_vboxmachines' \ '1: :_files' \
&& ret=0 && ret=0
;; ;;
(convertfromraw) (convertfromraw)