-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow admin password to be set by config if present. (#4429)
* Define an account password during install if one is given. * add config to build.yml Co-authored-by: Pavlos Daniel <[email protected]> Co-authored-by: Dane Powell <[email protected]>
- Loading branch information
1 parent
31f4fad
commit e7de9f9
Showing
2 changed files
with
12 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -54,13 +54,16 @@ deploy: | |
exclude_additions_file: ${repo.root}/blt/deploy-exclude-additions.txt | ||
gitignore_file: ${blt.root}/scripts/blt/deploy/.gitignore | ||
|
||
# File and Directory locations. | ||
# Drupal docroot. | ||
docroot: ${repo.root}/docroot | ||
|
||
# Drupal Account Credentials. These are used for installing Drupal. | ||
# Settings for installing Drupal. | ||
drupal: | ||
#account.name: admin | ||
account.mail: [email protected] | ||
account: | ||
# Admin account name and password will be randomly generated unless set here. | ||
#name: admin | ||
#pass: | ||
mail: [email protected] | ||
site.mail: ${drupal.account.mail} | ||
locale: en | ||
local_settings_file: ${docroot}/sites/${site}/settings/local.settings.php | ||
|
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