mirror of
https://github.com/owntracks/docker-recorder.git
synced 2026-05-05 02:46:34 +00:00
10 lines
198 B
Bash
10 lines
198 B
Bash
#!/bin/sh
|
|
|
|
# Load Default recorder.conf if not available
|
|
if [ ! -f /config/recorder.conf ]; then
|
|
cp /etc/default/recorder.conf /config/recorder.conf
|
|
fi
|
|
|
|
ot-recorder --initialize
|
|
ot-recorder "$@"
|