Compare commits

...

2 Commits

Author SHA1 Message Date
3c0d5be76a
Including temp change to backup main server 2021-03-05 12:24:30 -03:00
55a640cbf7
Services logging errors 2021-03-05 12:23:27 -03:00
11 changed files with 80 additions and 35 deletions

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

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

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

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

View File

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

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

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

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

View File

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

View File

@ -1,57 +1,93 @@
if ! screen -list | grep -q "Minecraft"; then
exit 1
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
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"
runAllWorlds "save hold\n"
# runAllWorlds "say $(date +%l:%M) - Saving worlds\n"
runPublic "say ^usave hold\n"
runAllWorlds "^usave hold\n"
sleep 2s
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
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
runCreative "^u"
runCreative "save query\n"
finishedCreative=$(tail -n 4 "$CREATIVEDIR/$LogFile")
done
runCreative "save resume\n"
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
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"
runSurvival "^u"
runSurvival "save query\n"
finishedSurvival=$(tail -n 4 "$SURVIVALDIR/$LogFile")
done
runSurvival "save resume\n"
fi
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,5 +1,6 @@
[Unit]
Description=Properly shutdown Minecraft before PC shutdown
OnFailure=logErrors@%n.service
[Service]
Type=oneshot

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

@ -1,6 +1,7 @@
[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 Normal file → Executable file
View File

@ -2,6 +2,7 @@
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 Normal file → Executable file
View File

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