[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 1.3-424-g93f786c

Ville Skyttä ville.skytta at iki.fi
Sat Aug 20 06:50:16 UTC 2011


The following commit has been merged in the master branch:
commit e4f77de0b797462849c5c6c8639c6071aeceb385
Author: Tobias Brunner <tobias at strongswan.org>
Date:   Thu Aug 4 17:48:36 2011 +0200

    ipsec: Complete connection names for 'up', 'down' and other commands.

diff --git a/completions/ipsec b/completions/ipsec
index 2f66da7..dd75796 100644
--- a/completions/ipsec
+++ b/completions/ipsec
@@ -2,6 +2,20 @@
 #
 have ipsec || return
 
+# Complete ipsec.conf conn entries.
+#
+# Reads a file from stdin in the ipsec.conf(5) format.
+_ipsec_connections()
+{
+    COMPREPLY=()
+    local keyword name
+    while read -r keyword name; do
+        if [[ $keyword = [#]* ]]; then continue; fi
+        [[ $keyword = 'conn' && $name != '%default' ]] && COMPREPLY+=("$name")
+    done
+    COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
+}
+
 _ipsec_freeswan()
 {
     local cur prev words cword
@@ -58,6 +72,10 @@ _ipsec_strongswan()
     fi
 
     case ${words[1]} in
+        down|route|status|statusall|unroute|up)
+            local confdir=$( ipsec --confdir )
+            _ipsec_connections < "$confdir/ipsec.conf"
+            ;;
         list*)
             COMPREPLY=( $( compgen -W '--utc' -- "$cur" ) )
             ;;

-- 
bash-completion



More information about the Bash-completion-commits mailing list