aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-11-25 12:36:55 +0100
committerGuido Günther <agx@sigxcpu.org>2016-12-15 12:11:10 +0100
commit51ed8c07a35a947d0ab2bc67aacef0af2441dcdf (patch)
tree3b5324eec5f51d2116cdce771c114b50eb9bf2ec /whatmaps/debiandistro.py
parentc77093fa9785ca894769d8145b1f2e370fcb90d2 (diff)
Exempt dbus from list of restarted services
since it aborts gdm sessions
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index ccc2139..57846ef 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -64,7 +64,8 @@ class DebianDistro(Distro):
# Per distro regex filter
service_blacklist_re = set([ # Restarting these aborts the users session
- '^user@[0-9]+.service$',
+ "^dbus(.service)?$",
+ "^user@[0-9]+.service$",
"^systemd-logind.service$",
"^(g|k|light|no|sd|w|x)dm(.service)?$",
])