summaryrefslogtreecommitdiffstats
path: root/etc/bash_completion.d/icinga2
blob: 5c49ab0361fec83fcb05fcaf04fe23372bf33c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
_icinga2()
{
  local cur opts
  opts="${COMP_WORDS[*]}"
  cur="${COMP_WORDS[COMP_CWORD]}"
  COMPREPLY=($(icinga2 --autocomplete $COMP_CWORD ${COMP_WORDS[*]} < /dev/null))
  case $COMPREPLY in
    */|*=)
      compopt -o nospace
      ;;
  esac

  return 0
}

complete -F _icinga2 icinga2