From c25e8b8033f06c5616b08e6852b72369be4c5795 Mon Sep 17 00:00:00 2001 From: Martin Schuppert Date: Wed, 5 Dec 2018 16:10:43 +0100 Subject: [mysql] Enable mysql for OSP container env In containerized OSP env we now do not have no mysql packages installed outside the containers. Therefore the mysql plugin does not auto run. This adds the openstack-selinux package to the RH package list of the mysql plugin like on the OSP plugins. Resolves: #1501 Signed-off-by: Martin Schuppert Signed-off-by: Bryn M. Reeves --- sos/plugins/mysql.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sos/plugins/mysql.py b/sos/plugins/mysql.py index 9c2b21b5..f92af42e 100644 --- a/sos/plugins/mysql.py +++ b/sos/plugins/mysql.py @@ -82,7 +82,8 @@ class RedHatMysql(Mysql, RedHatPlugin): 'mysql-server', 'mysql', 'mariadb-server', - 'mariadb' + 'mariadb', + 'openstack-selinux' ) def setup(self): -- cgit