mirror of
https://gh.wpcy.net/https://github.com/netcccyun/dnsmgr.git
synced 2026-05-31 00:15:01 +08:00
18 lines
No EOL
304 B
Bash
18 lines
No EOL
304 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ ! -f /app/www/public/index.php ] || [ ! -f /app/firstrun ]; then
|
|
echo 'Copying new files'
|
|
\cp -a /usr/src/www /app/
|
|
|
|
if [ -d /app/www/runtime/cache ]; then
|
|
rm -rf /app/www/runtime/*
|
|
fi
|
|
|
|
chown -R www.www /app/www
|
|
|
|
touch /app/firstrun
|
|
fi
|
|
|
|
exec "$@" |