14 lines
342 B
Bash
Executable File
14 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#shellcheck disable=SC1091
|
|
source "/shim/umask.sh"
|
|
source "/shim/vpn.sh"
|
|
source "/shim/plex-preferences.sh"
|
|
|
|
#shellcheck disable=SC2155
|
|
export PLEX_MEDIA_SERVER_INFO_MODEL=$(uname -m)
|
|
#shellcheck disable=SC2155
|
|
export PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION=$(uname -r)
|
|
|
|
exec /usr/lib/plexmediaserver/Plex\ Media\ Server
|