You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
187 B
12 lines
187 B
8 years ago
|
#!/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
|