separate sync git script

This commit is contained in:
2026-01-28 20:04:24 +02:00
parent a3598a5f79
commit 9e57d9ebd2
3 changed files with 109 additions and 70 deletions

13
shared.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Shared variables and configuration for sync scripts
# Colors for output
GREEN='\033[0;32m'
RED='\033[0;31m'
BLUE='\033[0;34m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
# SSH options - auto-accept new host keys
SSH_OPTS="-o StrictHostKeyChecking=accept-new"