Files
RedBear-OS/recipes/shells/zsh/source/Completion/Debian/Command/_update-rc.d
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

29 lines
637 B
D

#compdef update-rc.d
local curcontext="$curcontext" state line expl
_arguments -C \
'-n[show actions without performing them]' \
'-f[force removal of symlinks]' \
'1:service:_services' \
'2:command:(remove defaults start stop)' \
'*::args:->args' && return
case $words[2] in
defaults)
_message -e number 'sequence number'
;;
remove)
_message 'no more arguments'
;;
st*)
case ${words[CURRENT-1]} in
.) _wanted commands expl commands compadd start stop && return ;;
start|stop) _message -e number 'sequence number' ;;
*) _message -e runlevels run\ level ;;
esac
;;
esac
return 1