[Bash-completion-commits] [SCM] bash-completion branch, master, updated. ffe704c24b7d4dea3fd3880cc1c39bcb58315a23

David Paleino d.paleino at gmail.com
Fri Oct 16 17:48:52 UTC 2009


The following commit has been merged in the master branch:
commit ffe704c24b7d4dea3fd3880cc1c39bcb58315a23
Author: David Paleino <d.paleino at gmail.com>
Date:   Fri Oct 16 19:46:51 2009 +0200

    contrib/munin-node fixed (Debian: #550943)

diff --git a/CHANGES b/CHANGES
index 4f9e379..34ce0ce 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,7 @@ bash-completion (1.x)
     available, since it's not available on MacOS X. Thanks to Rainer
     Müller <raimue at codingfarm.de> (bash-completion MacPorts maintainer)
   * Fixed "freq" and "rate" completion for iwconfig
+  * contrib/munin-node fixed (Debian: #550943)
 
   [ Ville Skyttä ]
   * Create bz2 dist tarball too.
diff --git a/contrib/munin-node b/contrib/munin-node
index 2753fc2..af8225c 100644
--- a/contrib/munin-node
+++ b/contrib/munin-node
@@ -1,7 +1,7 @@
 # bash completion for munin node
 
 have munin-run &&
-_munin-run()
+_munin_run()
 {
     local cur prev
 
@@ -28,10 +28,10 @@ _munin-run()
             -- "$cur" ) )
     fi
 } &&
-complete -F _munin-run munin-run
+complete -F _munin_run munin-run
 
 have munin-update &&
-_munin-update()
+_munin_update()
 {
     local cur prev
 
@@ -56,10 +56,10 @@ _munin-update()
             --fork --nofork --stdout --nostdout --timeout' -- "$cur" ) )
     fi
 } &&
-complete -F _munin-update munin-update
+complete -F _munin_update munin-update
 
 have munin-node-configure &&
-_munin-node-configure()
+_munin_node_configure()
 {
     local cur prev
 
@@ -92,7 +92,7 @@ _munin-node-configure()
             --remove-also --snmp --snmpversion --snmpcommunity' -- "$cur" ) )
     fi
 } &&
-complete -F _munin-node-configure munin-node-configure
+complete -F _munin_node_configure munin-node-configure
 
 # Local variables:
 # mode: shell-script

-- 
bash-completion



More information about the Bash-completion-commits mailing list