This commit is contained in:
Ramiro Paz
2026-03-09 15:09:06 -03:00
parent 8299f8bc96
commit 0e8fe168ef
85 changed files with 14079 additions and 0 deletions

20
tools/rollback.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
mv qfixdpl qfixdpl_tmp
if [ -f backups/qfixdpl.gz ]; then
mv backups/qfixdpl.gz .
gzip -fkd qfixdpl.gz
else
mv qfixdpl_tmp qfixdpl
echo "Error there is no backup file qfixdpl.gz"
fi
mv conf.toml conf.toml_tmp
if [ -f backups/conf.toml ]; then
mv backups/conf.toml .
else
mv conf.toml_tmp conf.toml
echo "Error there is no config backup file conf.toml"
fi