From 3a40d5e2432d863c10c04eeeab1a8cfda99f678c Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Wed, 29 Sep 2021 11:24:49 -0400 Subject: [PATCH 1/2] get receptorctl status for sosreport I presume the logs also get collected from journalctl but I'm not sure --- tools/sosreport/controller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/sosreport/controller.py b/tools/sosreport/controller.py index 21b1bab517..ced38ed97f 100644 --- a/tools/sosreport/controller.py +++ b/tools/sosreport/controller.py @@ -24,6 +24,7 @@ SOSREPORT_CONTROLLER_COMMANDS = [ "ls -ll /etc/tower", "ls -ll /var/run/awx-receptor", # list contents of dirctory where receptor socket should be "ls -ll /etc/receptor", + "receptorctl --socket /var/run/awx-receptor/receptor.sock status", # Get invormation about the status of the mesh "umask -p", # check current umask ] From d3289dc688918ec079f61c749d4bc4f0cae768fd Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 4 Oct 2021 09:45:11 -0400 Subject: [PATCH 2/2] fix typo in comment in tools/sosreport/controller.py --- tools/sosreport/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sosreport/controller.py b/tools/sosreport/controller.py index ced38ed97f..f283565745 100644 --- a/tools/sosreport/controller.py +++ b/tools/sosreport/controller.py @@ -24,7 +24,7 @@ SOSREPORT_CONTROLLER_COMMANDS = [ "ls -ll /etc/tower", "ls -ll /var/run/awx-receptor", # list contents of dirctory where receptor socket should be "ls -ll /etc/receptor", - "receptorctl --socket /var/run/awx-receptor/receptor.sock status", # Get invormation about the status of the mesh + "receptorctl --socket /var/run/awx-receptor/receptor.sock status", # Get information about the status of the mesh "umask -p", # check current umask ]