Skip to content

Commit

Permalink
fix(install): SHow Debian 10 is supported, update MariaDB defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed Aug 5, 2020
1 parent 3332051 commit fadf44d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def check_distribution_compatibility():
supported_dists = {
'macos': [10.9, 10.10, 10.11, 10.12],
'ubuntu': [14, 15, 16, 18, 19],
'debian': [8, 9],
'debian': [8, 9, 10],
'centos': [7]
}

Expand Down Expand Up @@ -396,7 +396,7 @@ def parse_commandline_args():
parser.add_argument('--overwrite', dest='overwrite', action='store_true', default=False, help='Whether to overwrite an existing bench')
# set passwords
parser.add_argument('--mysql-root-password', dest='mysql_root_password', help='Set mysql root password')
parser.add_argument('--mariadb-version', dest='mariadb_version', default='10.2', help='Specify mariadb version')
parser.add_argument('--mariadb-version', dest='mariadb_version', default='10.4', help='Specify mariadb version')
parser.add_argument('--admin-password', dest='admin_password', help='Set admin password')
parser.add_argument('--bench-name', dest='bench_name', help='Create bench with specified name. Default name is frappe-bench')
# Python interpreter to be used
Expand Down

0 comments on commit fadf44d

Please sign in to comment.