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/sh
|
|
|
|
/usr/bin/mysqldump --user={{ dolibarr_db_user }} \
|
|
--password={{ dolibarr_db_pass | quote }} \
|
|
--host={{ dolibarr_db_server }} \
|
|
--quick --single-transaction \
|
|
--add-drop-table {{ dolibarr_db_name }} | lz4 -c > {{ dolibarr_root_dir }}/db_dumps/{{ dolibarr_db_name }}.sql.lz4
|
|
|