We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in debug mode runs
+ run_as_user find /backup/ -type f -mmin +2 -iname 'redis_redis*' -exec rm -f '{}' ';' + sudo -Eu dbbackup find /backup/ -type f -mmin +2 -iname 'redis_redis*' -exec rm -f '{}' ';'
while the files from backup are saved like "redis_all_redis_20240512-132003.rdb.zst"
is there any workaround for that for example using DB_NAME or DB01_NAME=redis ? i tried it always saves redis_all_redis
change the find line to clean the correct filenames redis_all_redis*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
in debug mode runs
while the files from backup are saved like "redis_all_redis_20240512-132003.rdb.zst"
is there any workaround for that for example using DB_NAME or DB01_NAME=redis ? i tried it always saves redis_all_redis
Possible fixes
change the find line to clean the correct filenames redis_all_redis*
The text was updated successfully, but these errors were encountered: