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.
9 lines
408 B
9 lines
408 B
#!/bin/sh
|
|
|
|
set -eo pipefail
|
|
|
|
/usr/bin/mysqldump --user={{ ampache_mysql_user | quote }} \
|
|
--password={{ ampache_mysql_pass | quote }} \
|
|
--host={{ ampache_mysql_server | quote }} \
|
|
--quick --single-transaction \
|
|
--add-drop-table {{ ampache_mysql_db | quote }} | zstd -c > {{ ampache_root_dir }}/backup/{{ ampache_mysql_db }}.sql.zst
|
|
|