first commit

This commit is contained in:
Ramiro Paz
2026-03-11 10:54:11 -03:00
parent bfeecb334a
commit aa0525a78c
85 changed files with 14079 additions and 0 deletions

20
tools/rollback.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
mv qfixpt qfixpt_tmp
if [ -f backups/qfixpt.gz ]; then
mv backups/qfixpt.gz .
gzip -fkd qfixpt.gz
else
mv qfixpt_tmp qfixpt
echo "Error there is no backup file qfixpt.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