This file is indexed.

/etc/bash_completion.d/icingacli is in icingaweb2 2.1.0-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
_icingacli_completion()
{
  local cur opts
  opts="${COMP_WORDS[*]}"
  cur="${COMP_WORDS[COMP_CWORD]}"
  COMPREPLY=($($opts --autocomplete --autoindex $COMP_CWORD < /dev/null))
  return 0
}

complete -F _icingacli_completion icingacli