-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
2 changed files
with
52 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../src/init-utils/init-wp |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env bash | ||
|
||
get-repository-root() { | ||
git rev-parse --show-toplevel | ||
} | ||
|
||
generate-secrets-password() { | ||
set -e | ||
local length="${1:?}" | ||
local secret="${2:?}" | ||
|
||
# Set path to the secret file | ||
local secretPath="${SCRIPT_ROOT}/.secrets/${secret}.txt" | ||
|
||
if [ -f "${secretPath}" ] && [ -s "${secretPath}" ]; then | ||
echo "> Not overwritting already existing secret ${secret}" | ||
return 1 | ||
fi | ||
|
||
export LC_ALL=C | ||
|
||
local randomString | ||
randomString="$(tr -dc 'a-zA-Z0-9!@#$%^&*()-=_+[]{};:,.<>?`~' </dev/urandom | head -c "${length}")" | ||
|
||
echo "> Writting ${#randomString} bytes to ${secretPath}" | ||
echo -n "${randomString}" >"${secretPath}" | ||
} | ||
|
||
main() { | ||
SCRIPT_ROOT="$(get-repository-root)" | ||
export SCRIPT_ROOT | ||
|
||
mkdir -p "${SCRIPT_ROOT}/.secrets" & | ||
mkdir -p "${SCRIPT_ROOT}/data" & | ||
wait | ||
|
||
generate-secrets-password 32 wordpress_database_password & | ||
generate-secrets-password 32 database_root_password & | ||
wait | ||
|
||
{ | ||
echo "WORDPRESS_DB_USER='wordpress'" | ||
echo "WORDPRESS_DB_NAME='wordpress'" | ||
echo "WORDPRESS_DB_PASSWORD='$(cat "${SCRIPT_ROOT}/.secrets/wordpress_database_password.txt")'" | ||
echo "WORDPRESS_DB_HOST='database'" | ||
} >"${SCRIPT_ROOT}/.secrets/wp-database.env" | ||
|
||
echo "Rewrote ${SCRIPT_ROOT}/.secrets/wp-database.env file" | ||
} | ||
|
||
main "$@" |