frigate/docker/main/rootfs/etc/s6-overlay/s6-rc.d/log-prepare/run
2026-05-02 09:14:18 +10:00

14 lines
342 B
Plaintext
Executable File

#!/command/with-contenv bash
# shellcheck shell=bash
# Prepare the logs folder for s6-log
set -o errexit -o nounset -o pipefail
dirs=(/dev/shm/logs/frigate /dev/shm/logs/go2rtc /dev/shm/logs/nginx /dev/shm/logs/certsync)
mkdir -p "${dirs[@]}"
if [ "$(id -u)" = "0" ]; then
chown nobody:nogroup "${dirs[@]}"
fi
chmod 02755 "${dirs[@]}"