2025-07-02 07:39:01 +02:00

11 lines
159 B
Bash
Executable File

#!/bin/sh
set -e
# Ensure configuration exists
if [ ! -f "/config/settings.json" ]; then
cp -a /defaults/settings.json /config/settings.json
fi
exec "$@"