mirror of https://github.com/tteck/Proxmox.git
Update linkwarden-install.sh
fixes https://github.com/tteck/Proxmox/issues/3065
This commit is contained in:
parent
574226d993
commit
a94bc0234f
|
@ -42,7 +42,7 @@ msg_ok "Cloned Linkwarden Repository"
|
||||||
msg_info "Setting up PostgreSQL DB"
|
msg_info "Setting up PostgreSQL DB"
|
||||||
DB_NAME=linkwardendb
|
DB_NAME=linkwardendb
|
||||||
DB_USER=linkwarden
|
DB_USER=linkwarden
|
||||||
DB_PASS="$(openssl rand -base64 18 | cut -c1-13)"
|
DB_PASS="$(openssl rand -base64 18 | tr -d '/' | cut -c1-13)"
|
||||||
$STD sudo -u postgres psql -c "CREATE ROLE $DB_USER WITH LOGIN PASSWORD '$DB_PASS';"
|
$STD sudo -u postgres psql -c "CREATE ROLE $DB_USER WITH LOGIN PASSWORD '$DB_PASS';"
|
||||||
$STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME WITH OWNER $DB_USER TEMPLATE template0;"
|
$STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME WITH OWNER $DB_USER TEMPLATE template0;"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue