85 lines
3.7 KiB
Diff
85 lines
3.7 KiB
Diff
|
From b8cc2a94ad07cf529258ef0dde4002d8e1166f25 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
||
|
Date: Mon, 21 Oct 2013 18:53:57 -0400
|
||
|
Subject: [PATCH] shell-completion: dump has moved to systemd-analyze
|
||
|
|
||
|
Rename NO_OPTION to STANDALONE for consistency with other files.
|
||
|
---
|
||
|
shell-completion/bash/systemctl | 2 +-
|
||
|
shell-completion/bash/systemd-analyze | 4 ++--
|
||
|
shell-completion/zsh/_systemctl | 3 +--
|
||
|
shell-completion/zsh/_systemd-analyze | 1 +
|
||
|
4 files changed, 5 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl
|
||
|
index e335ee8..eea4b6d 100644
|
||
|
--- a/shell-completion/bash/systemctl
|
||
|
+++ b/shell-completion/bash/systemctl
|
||
|
@@ -137,7 +137,7 @@ _systemctl () {
|
||
|
[JOBS]='cancel'
|
||
|
[SNAPSHOTS]='delete'
|
||
|
[ENVS]='set-environment unset-environment'
|
||
|
- [STANDALONE]='daemon-reexec daemon-reload default dump
|
||
|
+ [STANDALONE]='daemon-reexec daemon-reload default
|
||
|
emergency exit halt hibernate hybrid-sleep kexec list-jobs
|
||
|
list-sockets list-units list-unit-files poweroff reboot rescue
|
||
|
show-environment suspend get-default'
|
||
|
diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze
|
||
|
index 5bd6768..b65466b 100644
|
||
|
--- a/shell-completion/bash/systemd-analyze
|
||
|
+++ b/shell-completion/bash/systemd-analyze
|
||
|
@@ -31,7 +31,7 @@ _systemd_analyze() {
|
||
|
local OPTS='--help --version --system --user --from-pattern --to-pattern --order --require'
|
||
|
|
||
|
local -A VERBS=(
|
||
|
- [NO_OPTION]='time blame plot'
|
||
|
+ [STANDALONE]='time blame plot dump'
|
||
|
[CRITICAL_CHAIN]='critical-chain'
|
||
|
[DOT]='dot'
|
||
|
[LOG_LEVEL]='set-log-level'
|
||
|
@@ -55,7 +55,7 @@ _systemd_analyze() {
|
||
|
if [[ -z $verb ]]; then
|
||
|
comps=${VERBS[*]}
|
||
|
|
||
|
- elif __contains_word "$verb" ${VERBS[NO_OPTION]}; then
|
||
|
+ elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
|
||
|
if [[ $cur = -* ]]; then
|
||
|
comps='--help --version --system --user'
|
||
|
fi
|
||
|
diff --git a/shell-completion/zsh/_systemctl b/shell-completion/zsh/_systemctl
|
||
|
index 298e97e..3959cd5 100644
|
||
|
--- a/shell-completion/zsh/_systemctl
|
||
|
+++ b/shell-completion/zsh/_systemctl
|
||
|
@@ -38,7 +38,6 @@
|
||
|
"is-enabled:Check whether unit files are enabled"
|
||
|
"list-jobs:List jobs"
|
||
|
"cancel:Cancel all, one, or more jobs"
|
||
|
- "dump:Dump server status"
|
||
|
"snapshot:Create a snapshot"
|
||
|
"delete:Remove one or more snapshots"
|
||
|
"show-environment:Dump environment"
|
||
|
@@ -264,7 +263,7 @@ done
|
||
|
(( $+functions[_systemctl_link] )) || _systemctl_link() { _files }
|
||
|
|
||
|
# no systemctl completion for:
|
||
|
-# [STANDALONE]='daemon-reexec daemon-reload default dump
|
||
|
+# [STANDALONE]='daemon-reexec daemon-reload default
|
||
|
# emergency exit halt kexec list-jobs list-units
|
||
|
# list-unit-files poweroff reboot rescue show-environment'
|
||
|
# [NAME]='snapshot load'
|
||
|
diff --git a/shell-completion/zsh/_systemd-analyze b/shell-completion/zsh/_systemd-analyze
|
||
|
index 37c60f5..2eda5fe 100644
|
||
|
--- a/shell-completion/zsh/_systemd-analyze
|
||
|
+++ b/shell-completion/zsh/_systemd-analyze
|
||
|
@@ -15,6 +15,7 @@ _systemd_analyze_command(){
|
||
|
'critical-chain:Print a tree of the time critical chain of units'
|
||
|
'plot:Output SVG graphic showing service initialization'
|
||
|
'dot:Dump dependency graph (in dot(1) format)'
|
||
|
+ 'dump:Dump server status'
|
||
|
'set-log-level:Set systemd log threshold'
|
||
|
)
|
||
|
|
||
|
--
|
||
|
1.8.4.652.g0d6e0ce
|
||
|
|