- 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 # 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> # Copyright (C) Ian Macdonald <ian@caliban.org>
# #
@ -931,7 +931,7 @@ _ipsec()
COMPREPLY=( $( compgen -W 'auto barf eroute klipsdebug look \ COMPREPLY=( $( compgen -W 'auto barf eroute klipsdebug look \
manual pluto ranbits rsasigkey \ manual pluto ranbits rsasigkey \
setup showdefaults showhostkey spi \ setup showdefaults showhostkey spi \
spigrp tncfg whack' $cur ) ) spigrp tncfg whack' -- $cur ) )
return 0 return 0
fi fi
@ -940,17 +940,18 @@ _ipsec()
COMPREPLY=( $( compgen -W '--asynchronous --up --add --delete \ COMPREPLY=( $( compgen -W '--asynchronous --up --add --delete \
--replace --down --route --unroute \ --replace --down --route --unroute \
--ready --status --rereadsecrets' \ --ready --status --rereadsecrets' \
$cur ) ) -- $cur ) )
;; ;;
manual) manual)
COMPREPLY=( $( compgen -W '--up --down --route --unroute \ COMPREPLY=( $( compgen -W '--up --down --route --unroute \
--union' $cur ) ) --union' -- $cur ) )
;; ;;
ranbits) ranbits)
COMPREPLY=( $( compgen -W '--quick --continuous --bytes' $cur ) ) COMPREPLY=( $( compgen -W '--quick --continuous --bytes' \
-- $cur ) )
;; ;;
setup) setup)
COMPREPLY=( $( compgen -W '--start --stop --restart' $cur ) ) COMPREPLY=( $( compgen -W '--start --stop --restart' -- $cur ) )
;; ;;
*) *)