dc60e84
From de92879c4fd08974b90bc73f3bd3129774486a1f Mon Sep 17 00:00:00 2001
dc60e84
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
dc60e84
Date: Sat, 19 Jul 2014 19:46:04 -0400
dc60e84
Subject: [PATCH] bash-completion: -p option for journalctl
dc60e84
dc60e84
(cherry picked from commit be8f4a9fa732d61e845e1ab1a62ac3a6b368d3a7)
dc60e84
---
dc60e84
 shell-completion/bash/journalctl | 9 +++++++--
dc60e84
 1 file changed, 7 insertions(+), 2 deletions(-)
dc60e84
dc60e84
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl
dc60e84
index e4b2f4ac84..14dcd223b3 100644
dc60e84
--- a/shell-completion/bash/journalctl
dc60e84
+++ b/shell-completion/bash/journalctl
dc60e84
@@ -35,6 +35,8 @@ __journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC}
dc60e84
                   _UDEV_{SYSNAME,DEVNODE,DEVLINK}
dc60e84
                   __CURSOR __{REALTIME,MONOTONIC}_TIMESTAMP)
dc60e84
 
dc60e84
+__syslog_priorities=(emerg alert crit err warning notice info debug)
dc60e84
+
dc60e84
 _journalctl() {
dc60e84
         local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
dc60e84
         local -A OPTS=(
dc60e84
@@ -44,8 +46,8 @@ _journalctl() {
dc60e84
                               --no-tail -q --quiet --setup-keys --this-boot --verify
dc60e84
                               --version --list-catalog --update-catalog --list-boots'
dc60e84
                        [ARG]='-b --boot --this-boot -D --directory --file -F --field
dc60e84
-                              -o --output -u --unit --user-unit'
dc60e84
-                [ARGUNKNOWN]='-c --cursor --interval -n --lines -p --priority --since --until
dc60e84
+                              -o --output -u --unit --user-unit -p --priority'
dc60e84
+                [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until
dc60e84
                               --verify-key'
dc60e84
         )
dc60e84
 
dc60e84
@@ -68,6 +70,9 @@ _journalctl() {
dc60e84
                         --field|-F)
dc60e84
                                 comps=${__journal_fields[*]}
dc60e84
                         ;;
dc60e84
+                        --priority|-p)
dc60e84
+                                comps=${__syslog_priorities[*]}
dc60e84
+                        ;;
dc60e84
                         --unit|-u)
dc60e84
                                 comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null)
dc60e84
                         ;;