32 lines
646 B
Bash
Executable file
32 lines
646 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
group=loomio
|
|
config_file='/etc/loomio/config.yml'
|
|
|
|
#if [ $(grep '@@SECRET_KEY@@' "$config_file") ]; then
|
|
# echo "* Generating random secret in $config_file" >&2
|
|
|
|
# secret_key="$(pwgen -s 50 1)"
|
|
# sed -i "s|@@SECRET_KEY@@|$secret_key|" "$config_file"
|
|
#fi
|
|
|
|
if [ "${0##*.}" = 'post-upgrade' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* To finish Loomio upgrade run:
|
|
*
|
|
*
|
|
EOF
|
|
else
|
|
cat >&2 <<-EOF
|
|
*
|
|
* 1. Adjust settings in /etc/loomio/config.yml.
|
|
*
|
|
* 2. Create database for loomio:
|
|
*
|
|
* psql -c "CREATE ROLE loomio PASSWORD 'top-secret' INHERIT LOGIN;"
|
|
* psql -c "CREATE DATABASE loomio OWNER loomio ENCODING 'UTF-8';"
|
|
*
|
|
EOF
|
|
fi
|