summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2019-03-23 21:51:04 +0100
committerFrantisek Sumsal <frantisek@sumsal.cz>2019-03-23 21:51:04 +0100
commitc01dbf6d19e44fd3bb8e9afa613d66475ed7a143 (patch)
treef21c2f813e251ab008ba69b4904236ee526e0686 /shell-completion
parent1413763ea540a897852494259cb949fe01e1e7e7 (diff)
downloadsystemd-c01dbf6d19e44fd3bb8e9afa613d66475ed7a143.tar.gz
bash-completion: unify indentation
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/bash/journalctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl
index cdb1fc7cb4..3beb347e1b 100644
--- a/shell-completion/bash/journalctl
+++ b/shell-completion/bash/journalctl
@@ -28,7 +28,7 @@ __contains_word () {
__get_machines() {
local a b
(machinectl list-images --no-legend --no-pager; machinectl list --no-legend --no-pager; echo ".host") | \
- { while read a b; do echo " $a"; done; } | sort -u;
+ { while read a b; do echo " $a"; done; } | sort -u;
}
__syslog_priorities=(emerg alert crit err warning notice info debug)
@@ -77,7 +77,7 @@ _journalctl() {
;;
--field|-F)
comps=$(journalctl --fields | sort 2>/dev/null)
- ;;
+ ;;
--machine|-M)
comps=$( __get_machines )
;;