[GH-ISSUE #34] Allow a per-host tag for multi-server setups #8

Closed
opened 2026-03-04 19:17:24 +03:00 by kerem · 1 comment
Owner

Originally created by @codesterribly on GitHub (Nov 15, 2025).
Original GitHub issue: https://github.com/007revad/Linux_Plex_Backup/issues/34

If you run two Plex instances on similar hosts, an extra tag is helpful in filenames:

# Optional extra tag for backup filenames
Backup_Tag=

Then, when you compute Backup_Name, fold it in if set:

if [[ -n ${Backup_Tag:-} ]]; then
    Backup_Name="${Nas}_${Backup_Tag}_${Now}_Plex_${Version}_Backup"
else
    Backup_Name="${Nas}_${Now}_Plex_${Version}_Backup"
fi
Originally created by @codesterribly on GitHub (Nov 15, 2025). Original GitHub issue: https://github.com/007revad/Linux_Plex_Backup/issues/34 If you run two Plex instances on similar hosts, an extra tag is helpful in filenames: ``` # Optional extra tag for backup filenames Backup_Tag= ``` Then, when you compute Backup_Name, fold it in if set: ``` if [[ -n ${Backup_Tag:-} ]]; then Backup_Name="${Nas}_${Backup_Tag}_${Now}_Plex_${Version}_Backup" else Backup_Name="${Nas}_${Now}_Plex_${Version}_Backup" fi ```
kerem closed this issue 2026-03-04 19:17:24 +03:00
Author
Owner

@007revad commented on GitHub (Nov 16, 2025):

That's when Name can be set to a nickname. Like MyPC and MyPC-docker

<!-- gh-comment-id:3539491428 --> @007revad commented on GitHub (Nov 16, 2025): That's when Name can be set to a nickname. Like MyPC and MyPC-docker
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Linux_Plex_Backup#8
No description provided.