- add SuSE support for ifup/down and ifstatus, if present. Patch from
Jonathan <rise@knavery.net>
This commit is contained in:
parent
c8e765903e
commit
0c718b2bfe
@ -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.707 2004/05/24 09:00:23 ianmacd Exp $
|
# $Id: bash_completion,v 1.708 2004/05/24 09:12:31 ianmacd Exp $
|
||||||
#
|
#
|
||||||
# Copyright (C) Ian Macdonald <ian@caliban.org>
|
# Copyright (C) Ian Macdonald <ian@caliban.org>
|
||||||
#
|
#
|
||||||
@ -211,6 +211,12 @@ _interfaces()
|
|||||||
# Debian system
|
# Debian system
|
||||||
COMPREPLY=( $( sed -ne 's|^iface \([^ ]\+\).*$|\1|p' \
|
COMPREPLY=( $( sed -ne 's|^iface \([^ ]\+\).*$|\1|p' \
|
||||||
/etc/network/interfaces ) )
|
/etc/network/interfaces ) )
|
||||||
|
elif [ -f /etc/SuSE-release ]; then
|
||||||
|
# SuSE system
|
||||||
|
COMPREPLY=( $( command ls \
|
||||||
|
/etc/sysconfig/network/ifcfg-* | \
|
||||||
|
sed -ne 's|.*ifcfg-\('$cur'.*\)|\1|p' ) )
|
||||||
|
|
||||||
else
|
else
|
||||||
# Assume Red Hat
|
# Assume Red Hat
|
||||||
COMPREPLY=( $( command ls \
|
COMPREPLY=( $( command ls \
|
||||||
@ -957,6 +963,7 @@ _ifupdown()
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
[ $UNAME = Linux ] && have ifup && complete -F _ifupdown ifup ifdown
|
[ $UNAME = Linux ] && have ifup && complete -F _ifupdown ifup ifdown
|
||||||
|
[ $UNAME = Linux ] && have ifstatus && complete -F _ifupdown ifstatus
|
||||||
|
|
||||||
# Linux ipsec(8) completion (for FreeS/WAN)
|
# Linux ipsec(8) completion (for FreeS/WAN)
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user