diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-05-28 10:18:07 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-05-28 10:18:07 -0400 |
commit | df253855f7dad20a338e221ab6aff2725df358e3 (patch) | |
tree | 257b52ab90ec9445d171f632a0636c2aa43e9dfb | |
parent | a82955eed222cc45b80563ec202019e9e48c3f3d (diff) | |
download | ampache-df253855f7dad20a338e221ab6aff2725df358e3.tar.gz ampache-df253855f7dad20a338e221ab6aff2725df358e3.tar.bz2 ampache-df253855f7dad20a338e221ab6aff2725df358e3.zip |
CLI installation: allow skipping DB user creation
-rw-r--r-- | bin/install/install_db.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/install/install_db.inc b/bin/install/install_db.inc index cae0435d..d495f05c 100644 --- a/bin/install/install_db.inc +++ b/bin/install/install_db.inc @@ -59,7 +59,7 @@ $new_db_pass = $options['p'] ?: $options['ampache-database-password']; $web_path = $options['w'] ?: $options ['webpath']; // Make sure we have all the required information -if (!$db_user || !$db_pass || !$db_host || !$db_name || !$new_db_user || !$new_db_pass) { +if (!$db_user || !$db_pass || !$db_host || !$db_name) { usage(); } |