From 2c12a402cb1e8277c271ced8dc9c06d20b8f6017 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 21 Jul 2014 21:11:56 -0400 Subject: shell-completion: systemd-analyze verify, systemctl link Some zsh completion helpers were not installed, so completion was broken. Add systemd-analyze verify. Make systemctl link complete only unit names. --- shell-completion/bash/systemctl.in | 2 +- shell-completion/bash/systemd-analyze | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'shell-completion/bash') diff --git a/shell-completion/bash/systemctl.in b/shell-completion/bash/systemctl.in index 4beec4e13..c5950cc75 100644 --- a/shell-completion/bash/systemctl.in +++ b/shell-completion/bash/systemctl.in @@ -89,7 +89,7 @@ _systemctl () { comps=$(compgen -A signal) ;; --type|-t) - comps='automount device mount path service snapshot socket swap target timer' + comps='automount busname device mount path service snapshot socket swap target timer' ;; --state) comps='loaded not-found stub diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze index 5575bebfc..77d1b542a 100644 --- a/shell-completion/bash/systemd-analyze +++ b/shell-completion/bash/systemd-analyze @@ -44,6 +44,7 @@ _systemd_analyze() { [CRITICAL_CHAIN]='critical-chain' [DOT]='dot' [LOG_LEVEL]='set-log-level' + [VERIFY]='verify' ) _init_completion || return @@ -99,6 +100,14 @@ _systemd_analyze() { comps='debug info notice warning err crit alert emerg' fi + elif __contains_word "$verb" ${VERBS[VERIFY]}; then + if [[ $cur = -* ]]; then + comps='--help --version --system --user --no-man' + else + comps=$( compgen -A file -- "$cur" ) + compopt -o filenames + fi + fi COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) -- cgit v1.2.3