Complete Linux backup manager with Whiptail TUI and CLI interface. Adapted from gniza4cp (cPanel backup tool) with target/profile-based system replacing cPanel-specific features. - 14 core engine modules (backup, restore, targets, remotes, transfer, etc.) - 11 Whiptail TUI screens (full CRUD for targets/remotes/schedules) - CLI entrypoint with subcommands for scripting/cron - Support for SSH, local, S3, and Google Drive remotes - rsync --link-dest incremental snapshots - Root and user mode (XDG paths) - 70 passing tests - Config templates, installer, uninstaller Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
622 B
Plaintext
32 lines
622 B
Plaintext
# gniza — Remote Configuration
|
|
# Copy to remotes.d/<name>.conf
|
|
|
|
# Remote type: ssh, local, s3, gdrive
|
|
REMOTE_TYPE="ssh"
|
|
|
|
# SSH settings
|
|
REMOTE_HOST=""
|
|
REMOTE_PORT=22
|
|
REMOTE_USER="root"
|
|
REMOTE_AUTH_METHOD="key"
|
|
REMOTE_KEY=""
|
|
REMOTE_PASSWORD=""
|
|
REMOTE_BASE="/backups"
|
|
|
|
# Bandwidth limit override (KB/s, 0 = use global)
|
|
BWLIMIT=0
|
|
|
|
# Retention override
|
|
RETENTION_COUNT=30
|
|
|
|
# S3 settings (when REMOTE_TYPE=s3)
|
|
# S3_ACCESS_KEY_ID=""
|
|
# S3_SECRET_ACCESS_KEY=""
|
|
# S3_REGION="us-east-1"
|
|
# S3_ENDPOINT=""
|
|
# S3_BUCKET=""
|
|
|
|
# Google Drive settings (when REMOTE_TYPE=gdrive)
|
|
# GDRIVE_SERVICE_ACCOUNT_FILE=""
|
|
# GDRIVE_ROOT_FOLDER_ID=""
|