From 9b3275c46abc5fe3fd535d5d2991c35ace1fc430 Mon Sep 17 00:00:00 2001 From: Aetos Skia Date: Tue, 21 Oct 2025 15:38:44 +0530 Subject: [PATCH] rscyn script --- litany_of_synchronization.sh | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 litany_of_synchronization.sh diff --git a/litany_of_synchronization.sh b/litany_of_synchronization.sh new file mode 100755 index 0000000..6d37f42 --- /dev/null +++ b/litany_of_synchronization.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# ========================================================== +# 🔱 Rite of Data Preservation 🔱 +# In the name of the Omnissiah, may the Machine Spirit bless this transfer. +# ========================================================== + +echo "" +echo "⚙️ [Rite Initiated] Beginning sanctified data synchronization..." +echo "==========================================================" +sleep 1 + +# Function for stylized echo +bless_echo() { + echo "" + echo "🕯️ >>> ${1}" + echo "----------------------------------------------------------" +} + +# Gitea +bless_echo "Invoking the Gitea spirit... transferring codex repositories." +sudo rsync -avh --progress /home/aetos/gitea/ /mnt/omnissiah-vault/configs/gitea/ + +# Drone +bless_echo "Summoning the Servo-Drone... replicating mission logs and build data." +sudo rsync -avh --progress /home/aetos/drone/ /mnt/omnissiah-vault/configs/drone/ + +# Registry +bless_echo "Opening the Vault of Data... syncing Docker image reliquaries." +sudo rsync -avh --progress /home/aetos/registry/ /mnt/omnissiah-vault/data/registry/ + +# Auth +bless_echo "Transmitting sacred credentials from the Auth Shrine." +sudo rsync -avh --progress /home/aetos/registry/auth/ /mnt/omnissiah-vault/configs/auth/ + +# Certs +bless_echo "Sanctifying certificates... copying holy encryption seals." +sudo rsync -avh --progress /home/aetos/certs/ /mnt/omnissiah-vault/configs/certs/ + +echo "" +echo "==========================================================" +echo "✅ [Rite Complete] The Machine Spirit rests content." +echo "May your data remain pure, your syncs uncorrupted, and your drives eternal." +echo "=========================================================="