mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:16:20 +01:00
12 lines
187 B
Text
12 lines
187 B
Text
|
#!/bin/sh
|
||
|
|
||
|
for FOLDER in /data/gitea/conf /data/gitea/log /data/git /data/ssh; do
|
||
|
mkdir -p ${FOLDER}
|
||
|
done
|
||
|
|
||
|
if [ $# -gt 0 ]; then
|
||
|
exec "$@"
|
||
|
else
|
||
|
exec /bin/s6-svscan /etc/s6
|
||
|
fi
|