Closed stevelmcgill closed 3 years ago
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
Please read this blog post to see the reasons why I mark issues as stale.
This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details.
This warning occurs when installing MySQL 8.0.23:
[Warning] [MY-011070] [Server] 'Disabling symbolic links using --skip-symbolic-links (or equivalent) is the default. Consider not using this option as it' is deprecated and will be removed in a future release.
I believe adding the version check conditional around the symbolic-links option in my.cnf would remedy the issue (https://github.com/geerlingguy/ansible-role-mysql/blob/master/templates/my.cnf.j2)
{% if '8.0.' not in mysql_cli_version.stdout %}
Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links = 0 {% endif %}
What do you think?