From c06b47af77e2a8f435f916ed40aeab5da9bcd221 Mon Sep 17 00:00:00 2001 From: kingoftheconnors Date: Sun, 2 Jun 2019 18:24:18 -0400 Subject: [PATCH] Fixed error message to direct users to the right debug command --- roles/matrix-common-after/tasks/start.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-common-after/tasks/start.yml b/roles/matrix-common-after/tasks/start.yml index f0015428b..6a5318149 100644 --- a/roles/matrix-common-after/tasks/start.yml +++ b/roles/matrix-common-after/tasks/start.yml @@ -36,6 +36,6 @@ msg: >- {{ item }} was not detected to be running. It's possible that there's a configuration problem or another service on your server interferes with it (uses the same ports, etc.). - Try running `systemctl status {{ item }}` and `systemctl -fu {{ item }}` on the server to investigate. + Try running `systemctl status {{ item }}` and `journalctl -fu {{ item }}` on the server to investigate. with_items: "{{ matrix_systemd_services_list }}" when: "ansible_facts.services[item + '.service']|default(none) is none or ansible_facts.services[item + '.service'].state != 'running'"