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.
|
#!/bin/bash -e
|
|
|
|
/usr/bin/mysqldump --user={{ gitea_db_user | quote }} \
|
|
--password={{ gitea_db_pass | quote }} \
|
|
--host={{ gitea_db_server }} \
|
|
--quick --single-transaction \
|
|
--add-drop-table {{ gitea_db_name }} | \
|
|
zstd -c > {{ gitea_root_dir }}/backup/{{ gitea_db_name }}.sql.zst
|
|
|