Compare commits

..

No commits in common. "3c0d5be76aa858775a37026828d06667c4d503ed" and "2b36d7c555cd72fcf664a1c4f59d1ecebb9f3e11" have entirely different histories.

11 changed files with 35 additions and 80 deletions

1
Services/after-wakeup.service Executable file → Normal file
View File

@ -1,7 +1,6 @@
[Unit]
Description=Bruno Fontes script after wakeup
After=suspend.target
OnFailure=logErrors@%n.service
[Service]
Type=simple

1
Services/backup-contabo.service Executable file → Normal file
View File

@ -1,6 +1,5 @@
[Unit]
Description=Backup contabo daily
OnFailure=logErrors@%n.service
[Service]
ExecStart=/home/bruno/Backups/Contabo/backup-contabo.sh

View File

@ -1,6 +1,5 @@
[Unit]
Description=Backup joplin weekly
OnFailure=logErrors@%n.service
[Service]
User=bruno

1
Services/before-sleep.service Executable file → Normal file
View File

@ -1,7 +1,6 @@
[Unit]
Description=Bruno Fontes script before sleep
Before=sleep.target
OnFailure=logErrors@%n.service
[Service]
Type=oneshot

0
Services/logErrors@.service Executable file → Normal file
View File

View File

@ -1,6 +1,5 @@
[Unit]
Description=Minecraft Informa a Hora Certa
OnFailure=logErrors@%n.service
[Service]
User=bruno

View File

@ -1,93 +1,57 @@
if screen -list | grep -q "MncftPublic"; then
publicBackup="true"
fi
if screen -list | grep -q "Minecraft"; then
otherBackup="true"
fi
if [[ -z $publicBackup && -z $otherBackup ]] ; then
echo "Entrei"
exit 1
if ! screen -list | grep -q "Minecraft"; then
exit 1
fi
BACKUPDIR="/home/bruno/Backups/zBackup-Minecraft/backups"
SERVERDIR="/home/bruno/Apps/Minecraft"
PUBLICDIR="$SERVERDIR/BedrockServer_Public_19132"
SURVIVALDIR="$SERVERDIR/BedrockServer_Survival_19132"
CREATIVEDIR="$SERVERDIR/BedrockServer_Creative_19134"
LogFile="log.txt"
BACKUPDATE=$(date +"%Y-%m-%d_%H-%M-%S")
mkdir "$BACKUPDIR/$BACKUPDATE"
alias run='screen -S Minecraft -X'
alias runSurvival='run at Survival stuff'
alias runCreative='run at Creative stuff'
alias runPublic='screen -S MncftPublic -X at Server stuff'
alias runAllWorlds='run at "#" stuff'
cd /home/bruno/Apps/Minecraft
runAllWorlds "^u"
# runAllWorlds "say $(date +%l:%M) - Saving worlds\n"
runPublic "say ^usave hold\n"
runAllWorlds "^usave hold\n"
runAllWorlds "say $(date +%l:%M) - Saving worlds\n"
runAllWorlds "save hold\n"
sleep 2s
if [[ $publicBackup ]]; then
echo Preparing public
finishedPublic=""
timeout=30
while [[ $finishedPublic != *"Data saved."* ]]; do
if [[ $timeout -lt 1 ]]; then
notify-send "Error backuping Creative world"
exit 1
fi
(( timeout-- ))
sleep 1s
runPublic "say ^usave query\n"
finishedPublic=$(tail -n 4 "$PUBLICDIR/$LogFile")
done
/bin/tar c "$PUBLICDIR/worlds" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE/MncftPublic"
runPublic "say ^usave resume\n"
fi
if [[ $otherBackup ]]; then
echo Preparing others
finishedCreative=""
timeout=30
while [[ $finishedCreative != *"Data saved."* ]]; do
if [[ $timeout -lt 1 ]]; then
notify-send "Error backuping Creative world"
exit 1
fi
(( timeout-- ))
sleep 1s
runCreative "^u"
runCreative "save query\n"
finishedCreative=$(tail -n 4 "$CREATIVEDIR/$LogFile")
done
finishedCreative=""
timeout=30
while [[ $finishedCreative != *"Data saved."* ]]; do
if [[ $timeout -lt 1 ]]; then
notify-send "Error backuping Creative world"
exit 1
fi
(( timeout-- ))
sleep 1s
runCreative "^u"
runCreative "save resume\n"
runCreative "save query\n"
finishedCreative=$(tail -n 4 "$CREATIVEDIR/$LogFile")
done
timeout=30
finishedSurvival=""
while [[ $finishedSurvival != *"Data saved."* ]]; do
if [[ $timeout -lt 1 ]]; then
notify-send "Error backuping Survival world"
exit 1
fi
(( timeout-- ))
sleep 1s
runSurvival "^u"
runSurvival "save query\n"
finishedSurvival=$(tail -n 4 "$SURVIVALDIR/$LogFile")
done
/bin/tar c "$SURVIVALDIR/worlds" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE/Survival"
/bin/tar c "$CREATIVEDIR/worlds" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE/Creative"
timeout=30
finishedSurvival=""
while [[ $finishedSurvival != *"Data saved."* ]]; do
if [[ $timeout -lt 1 ]]; then
notify-send "Error backuping Survival world"
exit 1
fi
(( timeout-- ))
sleep 1s
runSurvival "^u"
runSurvival "save resume\n"
fi
runSurvival "save query\n"
finishedSurvival=$(tail -n 4 "$SURVIVALDIR/$LogFile")
done
BACKUPDATE=$(date +"%Y-%m-%d_%H-%M-%S")
mkdir "$BACKUPDIR/$BACKUPDATE"
/bin/tar c --exclude=behavior_packs/* --exclude=resource_packs/* "$SURVIVALDIR/worlds/Survival" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE-Survival"
/bin/tar c --exclude=behavior_packs/* --exclude=resource_packs/* "$CREATIVEDIR/worlds/Creative" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE-Creative"
runAllWorlds "^u"
runAllWorlds "save resume\n"

View File

@ -1,6 +1,5 @@
[Unit]
Description=Properly shutdown Minecraft before PC shutdown
OnFailure=logErrors@%n.service
[Service]
Type=oneshot

1
Services/roothints.service Executable file → Normal file
View File

@ -1,7 +1,6 @@
[Unit]
Description=Update root hints for unbound
After=network.target
OnFailure=logErrors@%n.service
[Service]
ExecStart=/usr/bin/curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache

1
Services/testDNS.service Executable file → Normal file
View File

@ -2,7 +2,6 @@
Description=Test and fix DNS update with wrong time
Wants=network-online.target
After=network-online.target
OnFailure=logErrors@%n.service
[Service]
Type=oneshot

1
Services/updateRootHints.service Executable file → Normal file
View File

@ -1,6 +1,5 @@
[Unit]
Description=Run update DNS root hints montly
OnFailure=logErrors@%n.service
[Service]
Type=oneshot