![]() Add support of changing/adding any attribute in my.cnf. NB!!! It breaks backward compatibility for mysql.server state. Delete mysql_size param support (now you can customiza all my.cnf parameters in pillar) Add script import_users.py that create user pillar for existent server Add support root@localhost mysql user without password (root_password = False) Add support of grant_option |
||
---|---|---|
mysql | ||
import_users.py | ||
LICENSE | ||
pillar.example | ||
README.rst |
mysql
Install the MySQL client and/or server.
Note
See the full Salt Formulas installation and usage instructions.
Available states
mysql
Meta-state that includes all server packages in the correct order.
mysql.client
Install the MySQL client package.
mysql.server
Install the MySQL server package and start the service.
Debian OS family supports setting MySQL root password during install via debconf.
Note
If no root password is provided in the pillar, a random one will be
created. Because Hydrogen doesn't have easy access to a random function
(test.rand_str isn't introduced until Helium), instead, we use the
not-at-all random grains.server_id
. As this is
cryptographically insecure, future formula versions should use the newly
available random.get_str
method.
mysql.database
Create and manage MySQL databases.
mysql.python
Install mysql python bindings.
mysql.user
Create and manage MySQL database users with definable GRANT privileges.
The state accepts MySQL hashed passwords or clear text. Hashed password have priority.
Note
See the salt.states.mysql_user docs for additional information on configuring hashed passwords.
Make sure to quote the passwords in the pillar so YAML doesn't throw an exception.