mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 09:45:22 +03:00
11 lines
246 B
Bash
11 lines
246 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
if [[ -f "config/config.yml" ]]; then
|
||
|
|
echo "config/config.yml already exists, skipping initialization" >&2
|
||
|
|
else
|
||
|
|
echo "initializing config/config.yml" >&2
|
||
|
|
cp -fv config/config.yml.example config/config.yml
|
||
|
|
fi
|