#!/usr/bin/env bash # This contains variables for our helper scripts - it does not contain # Nextcloud core configuration variables, nor does it contain anything # like database passwords. # shellcheck disable=SC2034 NCUSER='www-data' NCPHPBIN='/usr/bin/php8.3' NCAPPLDIR='/path/to/nextcloud' NCDATADIR='/apth/to/nextclouds/datadir' NCDBNAME='nextcloud_mysql_dbname' NCINSTANCE='nextcloud_instance_id' NCDLTMP='/tmp/nc-update-lnde' NCDLTGT="${NCDATADIR}/updater-${NCINSTANCE}/downloads" NCDBBKPDIR='/path/to/sqlbackups' NCGRACE=60 # vim:syntax=sh