20 lines
328 B
Bash
20 lines
328 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DESC="Exportation des bases MariaDB"
|
|
|
|
. /usr/share/eole/schedule/config.sh
|
|
|
|
MYSQLSAVDIR=$SAVDIR/sql
|
|
OPTION="--lock-tables"
|
|
|
|
if [[ -d ${MYSQLSAVDIR} ]]
|
|
then
|
|
rm -rf ${MYSQLSAVDIR}
|
|
mkdir -p ${MYSQLSAVDIR}
|
|
fi
|
|
|
|
mariabackup --defaults-file=/etc/mysql/debian.cnf --backup --target-dir=$MYSQLSAVDIR
|
|
exit $?
|