mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-04 02:05:21 +03:00
11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
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)
|
|
|
|
mkdir -p "${dirs[@]}"
|
|
chown nobody:nogroup "${dirs[@]}"
|
|
chmod 02755 "${dirs[@]}" |