10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -e '/var/www/html/version.php' ]; then
|
|
tar cf - --one-file-system -C /usr/src/nextcloud . | tar xf -
|
|
chown -R www-data /var/www/html
|
|
fi
|
|
|
|
exec "$@"
|