mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2025-04-19 19:57:12 +00:00
Compare commits
2 Commits
2b36d7c555
...
3c0d5be76a
Author | SHA1 | Date | |
---|---|---|---|
3c0d5be76a | |||
55a640cbf7 |
1
Services/after-wakeup.service
Normal file → Executable file
1
Services/after-wakeup.service
Normal file → Executable file
@ -1,6 +1,7 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Bruno Fontes script after wakeup
|
Description=Bruno Fontes script after wakeup
|
||||||
After=suspend.target
|
After=suspend.target
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
|
1
Services/backup-contabo.service
Normal file → Executable file
1
Services/backup-contabo.service
Normal file → Executable file
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Backup contabo daily
|
Description=Backup contabo daily
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=/home/bruno/Backups/Contabo/backup-contabo.sh
|
ExecStart=/home/bruno/Backups/Contabo/backup-contabo.sh
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Backup joplin weekly
|
Description=Backup joplin weekly
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
User=bruno
|
User=bruno
|
||||||
|
1
Services/before-sleep.service
Normal file → Executable file
1
Services/before-sleep.service
Normal file → Executable file
@ -1,6 +1,7 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Bruno Fontes script before sleep
|
Description=Bruno Fontes script before sleep
|
||||||
Before=sleep.target
|
Before=sleep.target
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
|
0
Services/logErrors@.service
Normal file → Executable file
0
Services/logErrors@.service
Normal file → Executable file
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Minecraft Informa a Hora Certa
|
Description=Minecraft Informa a Hora Certa
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
User=bruno
|
User=bruno
|
||||||
|
@ -1,25 +1,60 @@
|
|||||||
if ! screen -list | grep -q "Minecraft"; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BACKUPDIR="/home/bruno/Backups/zBackup-Minecraft/backups"
|
BACKUPDIR="/home/bruno/Backups/zBackup-Minecraft/backups"
|
||||||
SERVERDIR="/home/bruno/Apps/Minecraft"
|
SERVERDIR="/home/bruno/Apps/Minecraft"
|
||||||
|
PUBLICDIR="$SERVERDIR/BedrockServer_Public_19132"
|
||||||
SURVIVALDIR="$SERVERDIR/BedrockServer_Survival_19132"
|
SURVIVALDIR="$SERVERDIR/BedrockServer_Survival_19132"
|
||||||
CREATIVEDIR="$SERVERDIR/BedrockServer_Creative_19134"
|
CREATIVEDIR="$SERVERDIR/BedrockServer_Creative_19134"
|
||||||
LogFile="log.txt"
|
LogFile="log.txt"
|
||||||
|
|
||||||
|
BACKUPDATE=$(date +"%Y-%m-%d_%H-%M-%S")
|
||||||
|
mkdir "$BACKUPDIR/$BACKUPDATE"
|
||||||
|
|
||||||
alias run='screen -S Minecraft -X'
|
alias run='screen -S Minecraft -X'
|
||||||
alias runSurvival='run at Survival stuff'
|
alias runSurvival='run at Survival stuff'
|
||||||
alias runCreative='run at Creative stuff'
|
alias runCreative='run at Creative stuff'
|
||||||
|
alias runPublic='screen -S MncftPublic -X at Server stuff'
|
||||||
alias runAllWorlds='run at "#" stuff'
|
alias runAllWorlds='run at "#" stuff'
|
||||||
|
|
||||||
cd /home/bruno/Apps/Minecraft
|
cd /home/bruno/Apps/Minecraft
|
||||||
|
|
||||||
runAllWorlds "^u"
|
runAllWorlds "^u"
|
||||||
runAllWorlds "say $(date +%l:%M) - Saving worlds\n"
|
# runAllWorlds "say $(date +%l:%M) - Saving worlds\n"
|
||||||
runAllWorlds "save hold\n"
|
runPublic "say ^usave hold\n"
|
||||||
|
runAllWorlds "^usave hold\n"
|
||||||
sleep 2s
|
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=""
|
finishedCreative=""
|
||||||
timeout=30
|
timeout=30
|
||||||
while [[ $finishedCreative != *"Data saved."* ]]; do
|
while [[ $finishedCreative != *"Data saved."* ]]; do
|
||||||
@ -33,6 +68,8 @@ while [[ $finishedCreative != *"Data saved."* ]]; do
|
|||||||
runCreative "save query\n"
|
runCreative "save query\n"
|
||||||
finishedCreative=$(tail -n 4 "$CREATIVEDIR/$LogFile")
|
finishedCreative=$(tail -n 4 "$CREATIVEDIR/$LogFile")
|
||||||
done
|
done
|
||||||
|
runCreative "^u"
|
||||||
|
runCreative "save resume\n"
|
||||||
|
|
||||||
timeout=30
|
timeout=30
|
||||||
finishedSurvival=""
|
finishedSurvival=""
|
||||||
@ -48,10 +85,9 @@ while [[ $finishedSurvival != *"Data saved."* ]]; do
|
|||||||
finishedSurvival=$(tail -n 4 "$SURVIVALDIR/$LogFile")
|
finishedSurvival=$(tail -n 4 "$SURVIVALDIR/$LogFile")
|
||||||
done
|
done
|
||||||
|
|
||||||
BACKUPDATE=$(date +"%Y-%m-%d_%H-%M-%S")
|
/bin/tar c "$SURVIVALDIR/worlds" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE/Survival"
|
||||||
mkdir "$BACKUPDIR/$BACKUPDATE"
|
/bin/tar c "$CREATIVEDIR/worlds" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE/Creative"
|
||||||
/bin/tar c --exclude=behavior_packs/* --exclude=resource_packs/* "$SURVIVALDIR/worlds/Survival" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE-Survival"
|
runSurvival "^u"
|
||||||
/bin/tar c --exclude=behavior_packs/* --exclude=resource_packs/* "$CREATIVEDIR/worlds/Creative" | zbackup --non-encrypted backup "$BACKUPDIR/$BACKUPDATE-Creative"
|
runSurvival "save resume\n"
|
||||||
|
fi
|
||||||
|
|
||||||
runAllWorlds "^u"
|
|
||||||
runAllWorlds "save resume\n"
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Properly shutdown Minecraft before PC shutdown
|
Description=Properly shutdown Minecraft before PC shutdown
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
|
1
Services/roothints.service
Normal file → Executable file
1
Services/roothints.service
Normal file → Executable file
@ -1,6 +1,7 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Update root hints for unbound
|
Description=Update root hints for unbound
|
||||||
After=network.target
|
After=network.target
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=/usr/bin/curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
|
ExecStart=/usr/bin/curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
|
||||||
|
1
Services/testDNS.service
Normal file → Executable file
1
Services/testDNS.service
Normal file → Executable file
@ -2,6 +2,7 @@
|
|||||||
Description=Test and fix DNS update with wrong time
|
Description=Test and fix DNS update with wrong time
|
||||||
Wants=network-online.target
|
Wants=network-online.target
|
||||||
After=network-online.target
|
After=network-online.target
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
|
1
Services/updateRootHints.service
Normal file → Executable file
1
Services/updateRootHints.service
Normal file → Executable file
@ -1,5 +1,6 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Run update DNS root hints montly
|
Description=Run update DNS root hints montly
|
||||||
|
OnFailure=logErrors@%n.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
|
Loading…
Reference in New Issue
Block a user