1
0
mirror of synced 2026-04-26 04:16:54 +00:00

2007-06-19 10:47:56 by steve

Added completion for "install" and "hooks".  (ie. 0 or 1 )
This commit is contained in:
steve
2007-06-19 10:47:56 +00:00
parent 69140ab04d
commit 1566828f3a

View File

@@ -18,7 +18,7 @@
# --
# http://www.steve.org.uk
#
# $Id: xen-tools,v 1.48 2007-04-10 22:56:46 steve Exp $
# $Id: xen-tools,v 1.49 2007-06-19 10:47:56 steve Exp $
#
@@ -107,6 +107,14 @@ _xen_create_image()
COMPREPLY=( $( compgen -W 'xfs ext3 reiserfs' -- "${COMP_WORDS[COMP_CWORD]}" ) )
return 0
;;
--hooks)
COMPREPLY=( $( compgen -W '0 1' -- "${COMP_WORDS[COMP_CWORD]}" ) )
return 0
;;
--install)
COMPREPLY=( $( compgen -W '0 1' -- "${COMP_WORDS[COMP_CWORD]}" ) )
return 0
;;
--image)
COMPREPLY=( $( compgen -W 'sparse full' -- "${COMP_WORDS[COMP_CWORD]}" ) )
return 0