This repository has been archived on 2026-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
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 "$@"