Ao usar o Ansible para provisionar seu Vagrant, pode ocorrer um erro devido ao MySQL solicitar uma senha. O seguinte código Ansible permitirá que você defina automaticamente a senha do MySQL durante o provisionamento.
- name: Mysql | Set root password
shell: mysql-server-5.5 mysql-server/root_password password password | debconf-set-selections
tags: needed
- name: Mysql | Set root repassword again
shell: mysql-server-5.5 mysql-server/root_password_again password password | debconf-set-selections
tags: needed
- name: Installing MySQL
action: apt pkg=mysql-server state=latest
tags: needed
Isso ajudou? Siga-me no twitter @ ItsCatDev