aboutsummaryrefslogtreecommitdiff
path: root/whatmaps
diff options
context:
space:
mode:
Diffstat (limited to 'whatmaps')
-rw-r--r--whatmaps/debiandistro.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 4fcce54..a85d9cd 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -63,8 +63,9 @@ class DebianDistro(Distro):
service_blacklist = set(['kvm', 'qemu-kvm', 'qemu-system-x86'])
# Per distro regex filter
- service_blacklist_re = set([
- '^user@[0-9]+.service$', # Restarting systemd user service aborts the session
+ service_blacklist_re = set([ # Restarting these aborts the users session
+ '^user@[0-9]+.service$',
+ "^(g|k|light|no|sd|w|x)dm(.service)?$",
])
@classmethod