Files
gniza4linux/etc/schedule.conf.example
shuki 928d5af54c Initial implementation of gniza4linux backup tool
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>
2026-03-05 21:15:29 +02:00

21 lines
492 B
Plaintext

# gniza — Schedule Configuration
# Copy to schedules.d/<name>.conf
# Schedule type: hourly, daily, weekly, monthly, custom
SCHEDULE="daily"
# Time (HH:MM format, 24h)
SCHEDULE_TIME="02:00"
# Day: day of week (0-6, 0=Sun) for weekly, day of month (1-28) for monthly
SCHEDULE_DAY=""
# Custom cron expression (only used when SCHEDULE=custom)
SCHEDULE_CRON=""
# Comma-separated remote names (empty = all remotes)
REMOTES=""
# Comma-separated target names (empty = all targets)
TARGETS=""