diff options
author | Martin Schuppert <mschuppert@redhat.com> | 2018-12-05 16:10:43 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-19 17:53:12 +0000 |
commit | c25e8b8033f06c5616b08e6852b72369be4c5795 (patch) | |
tree | 33ebc318c7b7b1ac58a41456ad96caa13e917295 | |
parent | 7c2c514c6aeba8bc04ef47a28b4491305f895c1b (diff) | |
download | sos-c25e8b8033f06c5616b08e6852b72369be4c5795.tar.gz |
[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 <mschuppert@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/mysql.py | 3 |
1 files changed, 2 insertions, 1 deletions
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): |