rebase plex to jammy, update to s6v3, remove opencl drivers
This commit is contained in:
parent
12d7dc9c8c
commit
3d443205d4
32 changed files with 32 additions and 23 deletions
26
root/etc/s6-overlay/s6-rc.d/init-plex-chown/run
Executable file
26
root/etc/s6-overlay/s6-rc.d/init-plex-chown/run
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/with-contenv bash
|
||||
|
||||
# create folders
|
||||
if [ ! -d "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}" ]; then \
|
||||
mkdir -p "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}"
|
||||
chown -R abc:abc /config
|
||||
fi
|
||||
|
||||
# check Library permissions
|
||||
PUID=${PUID:-911}
|
||||
if [ ! "$(stat -c %u /config/Library)" = "$PUID" ]; then
|
||||
echo "Change in ownership detected, please be patient while we chown existing files"
|
||||
echo "This could take some time"
|
||||
chown abc:abc -R \
|
||||
/config/Library
|
||||
fi
|
||||
|
||||
# remove plex pid after unclean stop
|
||||
if [[ -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid" ]]; then
|
||||
rm -f "/config/Library/Application Support/Plex Media Server/plexmediaserver.pid"
|
||||
fi
|
||||
|
||||
# permissions (non-recursive) on config root and folders
|
||||
chown abc:abc \
|
||||
/config \
|
||||
/config/*
|
||||
1
root/etc/s6-overlay/s6-rc.d/init-plex-chown/type
Normal file
1
root/etc/s6-overlay/s6-rc.d/init-plex-chown/type
Normal file
|
|
@ -0,0 +1 @@
|
|||
oneshot
|
||||
1
root/etc/s6-overlay/s6-rc.d/init-plex-chown/up
Normal file
1
root/etc/s6-overlay/s6-rc.d/init-plex-chown/up
Normal file
|
|
@ -0,0 +1 @@
|
|||
/etc/s6-overlay/s6-rc.d/init-plex-chown/run
|
||||
Loading…
Add table
Add a link
Reference in a new issue