-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mysql 8.4 #718
base: main
Are you sure you want to change the base?
Mysql 8.4 #718
Conversation
molecule/mysql.8.4/prepare.yml
Outdated
hosts: | ||
- debian.bullseye | ||
- debian.bookworm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hosts: | |
- debian.bullseye | |
- debian.bookworm | |
hosts: | |
- debian | |
- "!debian.buster" |
Permet de simplifier la gestion des releases:
- plus simple pour trouver les cas spéciaux buster
- supporte de fait les futures releases
(à appliquer de partout, bien entendu :) )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Partout, genre sur tout les rôles ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nan, juste pour les tests MySQL 8.4 :)
@@ -12,8 +12,8 @@ manala_mysql_install_packages_default: | | |||
manala_mysql_install_python_packages: | | |||
{{ | |||
(ansible_facts.python.version.major == 2) | ternary( | |||
['python-mysqldb'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attention, python-mysqldb
n'existe que sur buster:
- https://packages.debian.org/buster/python-pymysql
- https://packages.debian.org/buster/python3-pymysql
Il faut aussi s'assurer des versions minimum requises pour python3-mysqldb
et voir si ansible gère bien la présence des deux lib en même temps (est-ce qu'il ne va pas privilégier l'ancienne ? faut-il dès lors la supprimer ?)
1d50324
to
6ec8080
Compare
Closes #681