Files
RedBear-OS/recipes/shells/zsh/source/Completion/Unix/Command/_nginx
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

21 lines
810 B
Plaintext

#compdef nginx
local -ah signals=(
'quit\:shut down gracefully (SIGQUIT)'
'reload\:reload configuration (SIGHUP)'
'reopen\:re-open log files (SIGUSR1)'
'stop\:shut down quickly (SIGTERM)'
)
_arguments -s -S : \
'(: * -)'{-\?,-h}'[display help information]' \
'(: * -)-v[display version information]' \
'(: * -)-V[display version information and configure options]' \
'-c+[specify configuration file]:configuration file:_files' \
'-g+[specify global configuration directives]:configuration directives' \
'-p+[specify prefix path]:prefix path:_directories' \
'(-s)-q[suppress non-error messages (with -t/-T)]' \
"(-q -t -T)-s+[send specified signal to master process]:signal:((${(j< >)${(@q-)signals}}))" \
'(-s -T)-t[test configuration]' \
'(-s -t)-T[test and dump configuration]'