14 lines
276 B
Bash
14 lines
276 B
Bash
|
|
#!/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"
|