mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-02 17:25:22 +03:00
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/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
|