15 lines
431 B
Bash
Executable file
15 lines
431 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$1" == "configure" ]]; then
|
|
|
|
deb-systemd-helper enable nextcloud-cron.timer
|
|
|
|
# Only run occ upgrade if nextcloud has been configured
|
|
if [[ -z "$(grep installed /var/lib/nextcloud/webroot/config/config.php | grep false)" ]]; then
|
|
sudo -u www-data php /var/lib/nextcloud/webroot/occ upgrade
|
|
sudo -u www-data php /var/lib/nextcloud/webroot/occ maintenance:mode --off
|
|
fi
|
|
|
|
fi
|