Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / agents / plugins / mk_cups_queues
blob01e60f958391282f8b64965d7f3b7b42e2671f60
1 #!/bin/bash
2 # +------------------------------------------------------------------+
3 # | ____ _ _ __ __ _ __ |
4 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
5 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
6 # | | |___| | | | __/ (__| < | | | | . \ |
7 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
8 # | |
9 # | Copyright Mathias Kettner 2017 mk@mathias-kettner.de |
10 # +------------------------------------------------------------------+
12 # This file is part of Check_MK.
13 # The official homepage is at http://mathias-kettner.de/check_mk.
15 # check_mk is free software; you can redistribute it and/or modify it
16 # under the terms of the GNU General Public License as published by
17 # the Free Software Foundation in version 2. check_mk is distributed
18 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
19 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
20 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
21 # tails. You should have received a copy of the GNU General Public
22 # License along with GNU Make; see the file COPYING. If not, write
23 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
24 # Boston, MA 02110-1301 USA.
26 if type lpstat > /dev/null 2>&1 ; then
27 export LC_TIME="en_US.UTF-8"
28 echo "<<<cups_queues>>>"
29 CPRINTCONF=/etc/cups/printers.conf
30 if [ -r "$CPRINTCONF" ] ; then
31 LOCAL_PRINTERS=$(grep -E "<(Default)?Printer .*>" $CPRINTCONF | awk '{print $2}' | sed -e 's/>//')
32 lpstat -p | while read LINE
34 PRINTER=$(echo "$LINE" | awk '{print $2}')
35 if echo "$LOCAL_PRINTERS" | grep -q "$PRINTER"; then
36 echo "$LINE"
38 done
39 echo '---'
40 lpstat -o | while read LINE
42 PRINTER=${LINE%%-*}
43 if echo "$LOCAL_PRINTERS" | grep -q "$PRINTER"; then
44 echo "$LINE"
46 done
47 else
48 PRINTER=$(lpstat -p)
49 echo "$PRINTER"
50 echo '---'
51 QUEUE=$(lpstat -o | sort)
52 echo "$QUEUE"