aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAge
* Simplify Makefile: remove redundant 'upgrade' targetSam Scholten2025-10-27
| | | | | | | - Remove confusing 'upgrade' target that just did git pull + update - Users can run 'git pull && make update' explicitly - Follows Unix philosophy of explicit, single-purpose commands - Update help text to reflect the change
* Add missing 'upgrade' target to MakefileSam Scholten2025-10-27
| | | | | | - Add upgrade target that pulls latest changes before running update - This matches the help documentation and user expectations - Fixes issue where make upgrade reported 'Nothing to be done'
* Add timer updates to update.sh and create upgrade make targetSam Scholten2025-10-24
| | | | | | - Modified update.sh to also copy timer files (restic-backup.timer and restic-check.timer) - Added 'upgrade' make target that reminds users to git pull first - Updated help text to clarify difference between 'update' and 'upgrade'
* Fix make config to detect system scope configuration (second fix)Sam Scholten2025-10-24
| | | | | Added sudo before checking for /root/.restic_env in the config target's elif condition. The previous commit only fixed the validate-config target, not the config target.
* Fix make config to detect system scope configurationSam Scholten2025-10-24
| | | | | | | Add sudo before checking for /root/.restic_env in the config target. Without sudo, the check runs as the regular user and can't see the system scope environment file, causing make config to incorrectly report 'No DRestic configuration found' when system scope is set up.
* Add missing 'make update' targetSam Scholten2025-10-22
| | | | | | - Add update target to Makefile for convenience - Update help text to include update command - Add update to .PHONY declaration
* Release v1.0.0: Initial stable releasev1.0.0v1.0Sam Scholten2025-10-22
| | | | | | - Basic multi-device backup functionality - Support for MEGA.nz remote storage - Bug fixes for Makefile and backup script
* unique Restic repository paths per hostSam Scholten2025-09-11
|
* initSam Scholten2025-09-11