feat(package): hemar: continios work

This commit is contained in:
2025-10-01 11:09:09 +00:00
parent 38bf9151eb
commit 0eb95197bc
11 changed files with 244 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/dash
init_plex() {
local backend
backend=${1:?}
case "$backend" in
env)
. ${WORKSPACE}/plex/backend/env_var.sh
;;
file)
. ${WORKSPACE}/plex/backend/file.sh
;;
*)
exit 1
;;
esac
}