mirror of
https://github.com/YunoHost-Apps/immich_ynh.git
synced 2024-09-03 20:36:24 +02:00
Customize some settings in db
This commit is contained in:
parent
bb33f34005
commit
0f29da3a0a
1 changed files with 3 additions and 0 deletions
|
@ -234,6 +234,9 @@ myynh_create_psql_db() {
|
|||
myynh_execute_psql_as_root --sql="CREATE USER $app WITH ENCRYPTED PASSWORD '$db_pwd';" --database="$app"
|
||||
myynh_execute_psql_as_root --sql="GRANT ALL PRIVILEGES ON DATABASE $app TO $app;" --database="$app"
|
||||
myynh_execute_psql_as_root --sql="ALTER USER $app WITH SUPERUSER;" --database="$app"
|
||||
|
||||
myynh_execute_psql_as_root --sql="INSERT INTO system_config (key, value) VALUES ('newVersionCheck.enabled', false);" --database="$app"
|
||||
myynh_execute_psql_as_root --sql="INSERT INTO system_config (key, value) VALUES ('machineLearning.url', '127.0.0.1:$port_machinelearning');" --database="$app"
|
||||
}
|
||||
|
||||
# Remove the database
|
||||
|
|
Loading…
Reference in a new issue