11 lines
195 B
Plaintext
Executable File
11 lines
195 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
mkdir -p /run/prowlarr-temp
|
|
|
|
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
|
|
lsiown -R abc:abc \
|
|
/config \
|
|
/run/prowlarr-temp
|
|
fi
|