- minor IPSec fixes

This commit is contained in:
ianmacd 2003-10-07 04:45:03 +00:00
parent cb11f892c8
commit 01d8a3e11a

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05b
#
# $Id: bash_completion,v 1.630 2003/09/29 18:08:05 ianmacd Exp $
# $Id: bash_completion,v 1.631 2003/10/07 06:45:03 ianmacd Exp $
#
# Copyright (C) Ian Macdonald <ian@caliban.org>
#
@ -931,7 +931,7 @@ _ipsec()
COMPREPLY=( $( compgen -W 'auto barf eroute klipsdebug look \
manual pluto ranbits rsasigkey \
setup showdefaults showhostkey spi \
spigrp tncfg whack' $cur ) )
spigrp tncfg whack' -- $cur ) )
return 0
fi
@ -940,17 +940,18 @@ _ipsec()
COMPREPLY=( $( compgen -W '--asynchronous --up --add --delete \
--replace --down --route --unroute \
--ready --status --rereadsecrets' \
$cur ) )
-- $cur ) )
;;
manual)
COMPREPLY=( $( compgen -W '--up --down --route --unroute \
--union' $cur ) )
--union' -- $cur ) )
;;
ranbits)
COMPREPLY=( $( compgen -W '--quick --continuous --bytes' $cur ) )
COMPREPLY=( $( compgen -W '--quick --continuous --bytes' \
-- $cur ) )
;;
setup)
COMPREPLY=( $( compgen -W '--start --stop --restart' $cur ) )
COMPREPLY=( $( compgen -W '--start --stop --restart' -- $cur ) )
;;
*)