mirror of
https://github.com/zsh-users/zsh
synced 2024-11-02 20:47:49 +00:00
21 lines
1.5 KiB
Text
21 lines
1.5 KiB
Text
#compdef cygserver cygserver.exe
|
|
|
|
# cygwin 1.5.25
|
|
|
|
_arguments -s -S \
|
|
'(--config-file -f)'{-f,--config-file}'[use specified file as config file (default /etc/cygserver.conf)]:config file:_files -g "*.conf(-.)"' \
|
|
'(--cleanup-threads -c)'{-c,--cleanup-threads}'[number of cleanup threads to use (default 2)]:number of threads:' \
|
|
'(--process-cache -p)'{-p,--process-cache}'[size of process cache]:cache size:' \
|
|
'(--request-threads -r)'{-r,--request-threads}'[number of request threads to use (default 10)]:number of threads:' \
|
|
'(--debug -d)'{-d,--debug}'[log debug messages to stderr]' \
|
|
'(--stderr -e --no-stderr -E)'{-e,--stderr}'[log to stderr (default if stderr is a tty)]' \
|
|
'(--stderr -e --no-stderr -E)'{-E,--no-stderr}"[don't log to stderr (see -y, -Y options)]" \
|
|
'(--log-level -l)'{-l,--log-level}'[verbosity of logging (1..7) (default 6)]:verbosity level:({1..7})' \
|
|
'(--syslog -y --no-syslog -Y)'{-y,--syslog}'[log to syslog (default if stderr is no tty)]' \
|
|
'(--syslog -y --no-syslog -Y)'{-Y,--no-syslog}"[don't log to syslog (see -e, -E options)]" \
|
|
'(--no-sharedmem -m)'{-m,--no-sharedmem}"[don't start XSI Shared Memory support]" \
|
|
'(--no-msgqueues -q)'{-q,--no-msgqueues}"[don't start XSI Message Queue support]" \
|
|
'(--no-semaphores -s)'{-s,--no-semaphores}"[don't start XSI Semaphore support]" \
|
|
'(--shutdown -S)'{-S,--shutdown}'[shutdown the daemon]' \
|
|
'(--help -h)'{-h,--help}'[output usage information and exit]' \
|
|
'(--version -v)'{-v,--version}'[output version information and exit]'
|