# Red Hat & Debian GNU/Linux if{up,down} completion        -*- shell-script -*-
_userland GNU || return 1
_ifupdown()
{
    local cur prev words cword
    _init_completion || return
    if [[ $cword -eq 1 ]]; then
        _configured_interfaces
        COMPREPLY=( $(compgen -W '${COMPREPLY[@]}' -- "$cur") )
    fi
} &&
complete -F _ifupdown ifup ifdown ifstatus
# ex: filetype=sh