start of next version
This commit is contained in:
parent
4f07810476
commit
a7e1e8f87e
4 changed files with 20 additions and 58 deletions
53
rootfs/etc/cont-init.d.stop/00-nextcloud
Normal file
53
rootfs/etc/cont-init.d.stop/00-nextcloud
Normal file
|
@ -0,0 +1,53 @@
|
|||
#!/usr/bin/with-contenv sh
|
||||
set -ex
|
||||
|
||||
chmod +x /var/lib/nextcloud/occ # for some reason it doesn't work when done from the Dockerfile
|
||||
|
||||
if [ ! -f /var/lib/nextcloud/data/.ocdata ]; then
|
||||
touch /var/lib/nextcloud/data/.ocdata
|
||||
fi
|
||||
|
||||
PGPASSWORD=$DB_PASSWORD psql -h $DB_HOST -U $DB_USER -d $DB_NAME -c "SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = '${DB_TABLE_PREFIX}appconfig')" | grep f
|
||||
|
||||
if [ $? -ne 1 ]; then
|
||||
cd /var/lib/nextcloud
|
||||
|
||||
if [ -f /var/lib/nextcloud/config/config.php ]; then
|
||||
sed -i -e "s/'installed' => true,/'installed' => false,/g" /var/lib/nextcloud/config/config.php
|
||||
fi
|
||||
|
||||
s6-setuidgid nginx ./occ maintenance:install \
|
||||
--database=pgsql \
|
||||
--database-host=$DB_HOST \
|
||||
--database-name=$DB_NAME \
|
||||
--database-user=$DB_USER \
|
||||
--database-pass=$DB_PASSWORD \
|
||||
--database-table-prefix=$DB_TABLE_PREFIX \
|
||||
--admin-user=$ADMIN_USER \
|
||||
--admin-pass=$ADMIN_PASSWORD \
|
||||
--no-interaction
|
||||
|
||||
s6-setuidgid nginx ./occ config:app:set --value cron core backgroundjobs_mode
|
||||
s6-setuidgid nginx ./occ app:enable user_ldap
|
||||
|
||||
s6-setuidgid nginx ./occ ldap:create-empty-config
|
||||
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' hasMemberOfFilterSupport "1"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapExperiencedAdmin "1"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapIgnoreNamingRules "1"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapHost "$LDAP_HOST"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapPort "$LDAP_PORT"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapTLS "$LDAP_TLS"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapAgentName "$LDAP_BIND_USER"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapAgentPassword "$LDAP_BIND_PASSWORD"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapLoginFilter "$LDAP_LOGIN_FILTER"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapUserDisplayName "$LDAP_USER_DISPLAY_NAME"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapUserFilter "$LDAP_USER_FILTER"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapBase "$LDAP_BASE_DN"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapBaseUsers "$LDAP_BASE_USER_DN"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapEmailAttribute "$LDAP_EMAIL_ATTRIBUTE"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapBaseGroups "$LDAP_BASE_GROUP_DN"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapGroupFilter "$LDAP_GROUP_FILTER"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' turnOffCertCheck "$LDAP_TURN_OFF_CERT_CHECK"
|
||||
s6-setuidgid nginx ./occ ldap:set-config 's01' ldapConfigurationActive "1"
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue