Update new install logic

This commit is contained in:
Eric Nemchik 2023-06-18 14:20:21 -05:00 committed by GitHub
parent b985143d6c
commit 002d482a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,9 +108,11 @@ if [ -f /config/www/nextcloud/config/needs_migration ] || [ -f /tmp/needs_instal
echo "The following apps have been disabled:"
diff /tmp/list_before /tmp/list_after | grep '<' | cut -d- -f2 | cut -d: -f1
else
# Install
echo "New nextcloud instance"
echo "Please run the web-based installer on first connect!"
if [ "${installed_version}" = "0.0.0.0" ]; then
# Install
echo "New nextcloud instance"
echo "Please run the web-based installer on first connect!"
fi
fi
rm -f /tmp/list_before /tmp/list_after