mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-25 01:42:00 +03:00
15 lines
549 B
Bash
15 lines
549 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Ensure default assets are present.
|
||
|
while true; do echo n; done | cp -Ri /www/default-assets/* /www/assets/ &> /dev/null
|
||
|
|
||
|
# Ensure compatibility with previous version (config.yml was in the root directory)
|
||
|
if [ -f "/www/config.yml" ]; then
|
||
|
yes n | cp -i /www/config.yml /www/assets/ &> /dev/null
|
||
|
fi
|
||
|
|
||
|
# Install default config if no one is available.
|
||
|
yes n | cp -i /www/default-assets/config.yml.dist /www/assets/config.yml &> /dev/null
|
||
|
|
||
|
chown -R $UID:$GID /www/assets
|
||
|
exec su-exec $UID:$GID darkhttpd /www/ --no-listing --port "$PORT"
|