don't use fedora as user for paths

This commit is contained in:
2026-07-18 21:06:47 +01:00
parent 68a7778a7a
commit 1268d49031
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ specifics for everything
- to back up automatically, run `sudo EDITOR=micro crontab -e` and add the following:
```
TZ=UTC
0 * * * * /home/fedora/thingy/scripts/volume-backup.sh
0 * * * * /home/admin/thingy/scripts/volume-backup.sh
```
## todo
+2 -2
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
THINGY_DIR="/home/fedora/thingy" # todo: better
WORKING_DIR="/home/admin/thingy" # todo: better
LOG_FILE="/var/log/volume-backup.log"
function log() {
@@ -17,7 +17,7 @@ trap cleanup EXIT
log "┌────── backup started ─────┐"
cd "$THINGY_DIR"
cd "$WORKING_DIR"
log "stopping docker services"
docker compose stop