From 54b5493516c71cd8f5ac65a698c73c2adc629838 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 12 Aug 2022 17:41:14 -0700 Subject: [PATCH] Skip line about X11 forwarding in data read via ssh. --- base_presence.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base_presence.py b/base_presence.py index 6464e97..c4d61da 100755 --- a/base_presence.py +++ b/base_presence.py @@ -179,6 +179,8 @@ class PresenceDetection(object): cabin_count = 0 for line in lines: line = line.strip() + if 'using fake authentication data for X11' in line: + continue if len(line) == 0: continue logger.debug('%s> %s', location, line) -- 2.45.0