Compare commits

..

No commits in common. "839e1209ab9b9e5e1c3d744ed59bc04bf2f4f44c" and "cc77575b1e2689becbd820a7cff58086ddee083b" have entirely different histories.

2 changed files with 1 additions and 7 deletions

View File

@ -25,7 +25,7 @@ Configure the role by setting the required variables. These can be set in the pl
## Execute SQL commands
```bash
docker exec -it central-mariadb mariadb -u root -p
docker exec -it central-mariadb mysql -u root -p
```
## Contributing

View File

@ -48,12 +48,6 @@
login_host: 127.0.0.1
login_port: 3306
- name: Grant database privileges
ansible.builtin.shell:
cmd: "docker exec central-mariadb mariadb -u root -p{{ central_mariadb_root_password }} -e \"GRANT ALL PRIVILEGES ON {{database_name}}.* TO '{{database_username}}'@'%';\""
args:
executable: /bin/bash
- name: "Create database user: {{ database_username }}"
mysql_user:
name: "{{database_username}}"