-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b6ff1e
commit 828cbe7
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,11 +125,12 @@ auto_run_tools() { | |
|
||
run_installer() { | ||
save_sentinel_runfile installer | ||
|
||
log_message TRACE "Running installer" | ||
INSTALL_ADMIN_EMAIL=$(container-var INSTALL_ADMIN_EMAIL --default "[email protected]") | ||
rand_pass=$(openssl rand -hex 64) | ||
INSTALL_ADMIN_PASSWORD=$(container-var INSTALL_ADMIN_PASSWORD --default "$rand_pass") | ||
INSTALL_URL=$(container-var INSTALL_URL --default "http://127.0.0.1") | ||
log_message TRACE "Container-var checks complete" | ||
|
||
log_message WARNING "Running: bin/install --url $INSTALL_URL --adminEmail $INSTALL_ADMIN_EMAIL --adminPassword XXXXXXXX" | ||
run_app_cmd bin/install --url "$INSTALL_URL" --adminEmail "$INSTALL_ADMIN_EMAIL" --adminPassword "$INSTALL_ADMIN_PASSWORD" | ||
|