mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 15:43:22 +02:00
8 lines
347 B
Plaintext
8 lines
347 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
/usr/bin/mysqldump --user={{ ttrss_mysql_user }} \
|
||
|
--password={{ ttrss_mysql_pass }} \
|
||
|
--host={{ ttrss_mysql_server }} \
|
||
|
--quick --single-transaction \
|
||
|
--add-drop-table {{ ttrss_mysql_db }} | lz4 -c > {{ ttrss_root_dir }}/db_dumps/{{ ttrss_mysql_db }}.sql.lz4
|