Fix MySQL Open Files Limit validation

The MySQL Open Files Limit validation still checks the mysql config path that
was used before the service was containerized, which is making the validation
fail. This patch adds the correct path to the validation.

Change-Id: I58e8da19ee7d83921b2eb63024bb37df6e501be3
Closes-Bug: #1757409
(cherry picked from commit 21e6ba6cb7)
This commit is contained in:
Florian Fuchs 2018-03-21 12:10:04 +00:00
parent d5546cd446
commit 0744e1b801
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
tasks:
- name: Get the open_files_limit value
become: true
mysql_variables: variable=open_files_limit
mysql_variables: variable=open_files_limit config_file=/var/lib/config-data/mysql/root/.my.cnf
register: mysqld_open_files_limit
- name: Test the open-files-limit value
fail: