chore: add current provisioning state before migration

This commit is contained in:
Jesús Pérez 2025-09-22 23:11:41 +01:00
parent a9703b4748
commit 50745b0f22
660 changed files with 88126 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#!/bin/bash
# Info: Radicle preparation script
# Author: Provisioning System
# Release: 1.0
echo "Preparing Radicle installation..."
# Load environment variables
[ -r "env-radicle" ] && . ./env-radicle
# Check if required tools are available
command -v curl >/dev/null 2>&1 || { echo "curl is required but not installed." >&2; exit 1; }
command -v tar >/dev/null 2>&1 || { echo "tar is required but not installed." >&2; exit 1; }
command -v systemctl >/dev/null 2>&1 || { echo "systemctl is required but not installed." >&2; exit 1; }
# Validate configuration
if [ -z "$RADICLE_VERSION" ]; then
echo "RADICLE_VERSION must be set" >&2
exit 1
fi
echo "Preparation completed successfully."