Issue #60: Document new mysql_root_password_update option.

pull/63/head
Jeff Geerling 9 years ago
parent 074b9de092
commit fc6609cd67
  1. 4
      README.md
  2. 4
      defaults/main.yml

@ -20,6 +20,10 @@ The home directory inside which Python MySQL settings will be stored, which Ansi
The MySQL root user account password.
mysql_root_password_update: no
Whether to force update the MySQL root user's password. By default, this role will only change the root user's password when MySQL is first configured. You can force an update by setting this to `yes`.
mysql_enabled_on_startup: yes
Whether MySQL should be enabled on startup.

@ -3,8 +3,8 @@ mysql_user_home: /root
mysql_root_username: root
mysql_root_password: root
# Set this to true to forcibly update the root password.
mysql_root_password_update: false
# Set this to `yes` to forcibly update the root password.
mysql_root_password_update: no
mysql_enabled_on_startup: yes