Full-featured cPanel backup tool with SSH, S3, and Google Drive support. Includes WHM plugin with Tailwind/DaisyUI UI, multi-remote management, decoupled schedules, and account restore workflows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
2.0 KiB
Bash
59 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
# gniza/lib/config.sh — Shell-variable config loading & validation
|
|
|
|
load_config() {
|
|
local config_file="${1:-$DEFAULT_CONFIG_FILE}"
|
|
|
|
if [[ ! -f "$config_file" ]]; then
|
|
die "Config file not found: $config_file (run 'gniza init' to create one)"
|
|
fi
|
|
|
|
# Source the config (shell variables)
|
|
# shellcheck disable=SC1090
|
|
source "$config_file" || die "Failed to parse config file: $config_file"
|
|
|
|
# Apply defaults for optional settings
|
|
TEMP_DIR="${TEMP_DIR:-$DEFAULT_TEMP_DIR}"
|
|
INCLUDE_ACCOUNTS="${INCLUDE_ACCOUNTS:-}"
|
|
EXCLUDE_ACCOUNTS="${EXCLUDE_ACCOUNTS:-$DEFAULT_EXCLUDE_ACCOUNTS}"
|
|
LOG_DIR="${LOG_DIR:-$DEFAULT_LOG_DIR}"
|
|
LOG_LEVEL="${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}"
|
|
LOG_RETAIN="${LOG_RETAIN:-$DEFAULT_LOG_RETAIN}"
|
|
NOTIFY_EMAIL="${NOTIFY_EMAIL:-}"
|
|
NOTIFY_ON="${NOTIFY_ON:-$DEFAULT_NOTIFY_ON}"
|
|
LOCK_FILE="${LOCK_FILE:-$DEFAULT_LOCK_FILE}"
|
|
SSH_TIMEOUT="${SSH_TIMEOUT:-$DEFAULT_SSH_TIMEOUT}"
|
|
SSH_RETRIES="${SSH_RETRIES:-$DEFAULT_SSH_RETRIES}"
|
|
RSYNC_EXTRA_OPTS="${RSYNC_EXTRA_OPTS:-}"
|
|
|
|
# --debug flag overrides config
|
|
[[ "${GNIZA_DEBUG:-false}" == "true" ]] && LOG_LEVEL="debug"
|
|
|
|
export TEMP_DIR INCLUDE_ACCOUNTS EXCLUDE_ACCOUNTS BWLIMIT RETENTION_COUNT
|
|
export LOG_DIR LOG_LEVEL LOG_RETAIN NOTIFY_EMAIL NOTIFY_ON
|
|
export LOCK_FILE SSH_TIMEOUT SSH_RETRIES RSYNC_EXTRA_OPTS
|
|
}
|
|
|
|
validate_config() {
|
|
local errors=0
|
|
|
|
# Per-remote validation is handled by validate_remote() in remotes.sh.
|
|
# Here we only validate local/global settings.
|
|
|
|
case "$NOTIFY_ON" in
|
|
always|failure|never) ;;
|
|
*) log_error "NOTIFY_ON must be always|failure|never, got: $NOTIFY_ON"; ((errors++)) || true ;;
|
|
esac
|
|
|
|
case "$LOG_LEVEL" in
|
|
debug|info|warn|error) ;;
|
|
*) log_error "LOG_LEVEL must be debug|info|warn|error, got: $LOG_LEVEL"; ((errors++)) || true ;;
|
|
esac
|
|
|
|
if (( errors > 0 )); then
|
|
log_error "Configuration has $errors error(s)"
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|