diff options
author | Elijah DeLee <kdelee@redhat.com> | 2021-09-29 17:24:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 17:24:49 +0200 |
commit | 3a40d5e2432d863c10c04eeeab1a8cfda99f678c (patch) | |
tree | 8e8c97e15b74461e816653b3054ba5e819d03acf | |
parent | Merge pull request #11070 from beeankha/receptor_related_docs_changes (diff) | |
download | awx-3a40d5e2432d863c10c04eeeab1a8cfda99f678c.tar.xz awx-3a40d5e2432d863c10c04eeeab1a8cfda99f678c.zip |
get receptorctl status for sosreport
I presume the logs also get collected from journalctl but I'm not sure
-rw-r--r-- | tools/sosreport/controller.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 ] |