/etc/zsh/completion.d/_grml-debootstrap is in grml-debootstrap 0.54.
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 11 12 13 14 15 16 17 18 19 20 21 22 | #compdef grml-debootstrap
# Filename: /etc/zsh/completion.d/_grml-debootstrap
# Purpose: zsh completion for grml-debootstrap
# Authors: grml-team (grml.org), (c) Frank Terbeck <ft@grml.org>, (c) Michael Prokop <mika@grml.org>
# Bug-Reports: see http://grml.org/bugs/
# License: This file is licensed under the GPL v2.
################################################################################
_arguments -s \
'(-h --help)'{-h,--help}'[this help text]:' \
'(-v --version)'{-v,--version}'[display version information]:' \
'(-m --mirror)'{-m,--mirror}'[specify mirror for apt{-get,itude}]:mirror' \
'(-p --mntpoint)'{-p,--mntpoint}'[mountpoint for the target system]:mount point:_path_files' \
'(-r --release)'{-r,--release}'[specify the release name of the new system]:release' \
'(-t --target)'{-t,--target}'[target partition or directory]:device or directory:_path_files' \
'--grub[installation device for grub]' \
'--password[specify password for root user]' \
'--bootappend[appendline for kernel]'
## END OF FILE #################################################################
# vim:ft=zsh
|