mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
Ensure config/apps.config.php get copied
PR #115 breaks the logic that config/apps.config.php get copied after custom_apps: https://github.com/nextcloud/docker/pull/115#discussion_r124702790. This patch is going to copy that file if it doesn't exist.
This commit is contained in:
parent
d1dd0fb007
commit
f47f9f9c99
7 changed files with 28 additions and 0 deletions
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
|
@ -35,6 +35,10 @@ if version_greater "$image_version" "$installed_version"; then
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f /var/www/html/config/apps.config.php ]; then
|
||||
cp -a /usr/src/nextcloud/config/apps.config.php /var/www/html/config/apps.config.php
|
||||
fi
|
||||
|
||||
if [ "$installed_version" != "0.0.0~unknown" ]; then
|
||||
su - www-data -s /bin/bash -c 'php /var/www/html/occ upgrade --no-app-disable'
|
||||
|
||||
|
|
Loading…
Reference in a new issue