mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-26 23:23:22 +02:00
12 lines
339 B
Plaintext
12 lines
339 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
PGPASSWORD={{ funkwhale_db_pass | quote }} /usr/pgsql-14/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
|