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.
8 lines
378 B
8 lines
378 B
5 years ago
|
#!/bin/bash -e
|
||
|
|
||
|
/usr/bin/mysqldump --user={{ glpi_mysql_user | quote }} \
|
||
|
--password={{ glpi_mysql_pass | quote }} \
|
||
|
--host={{ glpi_mysql_server | quote }} \
|
||
|
--quick --single-transaction \
|
||
|
--add-drop-table {{ glpi_mysql_db | quote }} | lz4 -c > {{ glpi_root_dir }}/db_dumps/{{ glpi_mysql_db }}.sql.lz4
|