]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bash-completion: unify indentation 12089/head
authorFrantisek Sumsal <frantisek@sumsal.cz>
Sat, 23 Mar 2019 20:51:04 +0000 (21:51 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Sat, 23 Mar 2019 20:51:04 +0000 (21:51 +0100)
shell-completion/bash/journalctl

index cdb1fc7cb4ffeb3d65839b7de37305e27d1e9822..3beb347e1b756bc0f3bd1f3160c16ae1501dcad2 100644 (file)
@@ -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 )
                         ;;