You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
339 B
11 lines
339 B
#!/bin/sh
|
|
|
|
set -eo pipefail
|
|
|
|
PGPASSWORD={{ funkwhale_db_pass | quote }} /usr/pgsql-13/bin/pg_dump \
|
|
--clean \
|
|
--create \
|
|
--username={{ funkwhale_db_user | quote }} \
|
|
--host={{ funkwhale_db_server | quote }} \
|
|
{{ funkwhale_db_name | quote }} | \
|
|
zstd -c > {{ funkwhale_root_dir }}/backup/{{ funkwhale_db_name | quote }}.sql.zst
|
|
|