44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
# Create group and user based on environment variables
|
|
if [ ! "$(getent group "$PGID")" ]; then
|
|
# If groupadd exists, use it
|
|
if command -v groupadd > /dev/null; then
|
|
groupadd -g "$PGID" jellyplex_group
|
|
else
|
|
addgroup -g "$PGID" jellyplex_group
|
|
fi
|
|
fi
|
|
|
|
if [ ! "$(getent passwd "$PUID")" ]; then
|
|
# If useradd exists, use it
|
|
if command -v useradd > /dev/null; then
|
|
useradd --no-create-home -u "$PUID" -g "$PGID" jellyplex_user
|
|
else
|
|
adduser -D -H -u "$PUID" -G jellyplex_group jellyplex_user
|
|
fi
|
|
fi
|
|
|
|
# Adjust ownership of the application directory
|
|
chown -R "$PUID:$PGID" /app
|
|
|
|
# Get directory of log and mark file to create base folder if it doesnt exist and change permissions
|
|
LOG_DIR=$(dirname "$LOG_FILE")
|
|
# If LOG_DIR is set, create the directory
|
|
if [ -n "$LOG_DIR" ]; then
|
|
mkdir -p "$LOG_DIR"
|
|
fi
|
|
|
|
MARK_DIR=$(dirname "$MARK_FILE")
|
|
if [ -n "$MARK_DIR" ]; then
|
|
mkdir -p "$MARK_DIR"
|
|
fi
|
|
|
|
chown -R "$PUID:$PGID" "$LOG_DIR"
|
|
chown -R "$PUID:$PGID" "$MARK_DIR"
|
|
|
|
# Run the application as the created user
|
|
exec gosu "$PUID:$PGID" "$@"
|