2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-09 16:36:25 +00:00

fix: bump MariaDB version

Update MariaDB version from `10.2` to `10.3` to match requirement in README.

By the way, is there any reason for the empty string being the default password and version?

```py
def install_maridb(mysql_root_password='', version=''):
    # ...
```
This commit is contained in:
Raffael Meyer 2020-01-17 20:01:38 +01:00 committed by GitHub
parent 5271e1ea2a
commit a2ea3d90c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ def install_prerequisites():
@click.command('mariadb') @click.command('mariadb')
@click.option('--mysql_root_password') @click.option('--mysql_root_password')
@click.option('--version', default="10.2") @click.option('--version', default="10.3")
def install_maridb(mysql_root_password='', version=''): def install_maridb(mysql_root_password='', version=''):
if mysql_root_password: if mysql_root_password:
extra_vars.update({ extra_vars.update({