backup-tools/config.sh.example

10 lines
396 B
Plaintext
Raw Permalink Normal View History

2023-09-05 14:31:41 +00:00
#!/bin/sh
# Credentials for a MariaDB user with the following grant:
# GRANT SELECT, LOCK TABLES, SHOW VIEW, SHOW DATABASES, EVENT, TRIGGER, EXECUTE ON *.* TO 'user'@'localhost';
mariadb_user="username"
mariadb_pass="password"
# Path to where to storage the finished archives. Obviously you should move these to a more permanent location afterwards.
db_backups_depot="/path/to/backup/storage"