mirror of
				https://git.cloudron.io/cloudron/gitea-app
				synced 2025-11-03 16:42:35 +00:00 
			
		
		
		
	login source table schema has changed
This commit is contained in:
		
							
								
								
									
										6
									
								
								start.sh
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								start.sh
									
									
									
									
									
								
							@@ -7,15 +7,17 @@ mkdir -p /run/gitea/tmp/uploads /run/sshd /run/gitea/sessions
 | 
				
			|||||||
setup_ldap_source() {
 | 
					setup_ldap_source() {
 | 
				
			||||||
    set -eu
 | 
					    set -eu
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    echo "==> Setup LDAP source"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Get the existing LDAP source status. This allows the user to disable LDAP
 | 
					    # Get the existing LDAP source status. This allows the user to disable LDAP
 | 
				
			||||||
    # Note that this method is deprecated since this app now supports optionalSso
 | 
					    # Note that this method is deprecated since this app now supports optionalSso
 | 
				
			||||||
    ldap_status=$(mysql -u"${CLOUDRON_MYSQL_USERNAME}" -p"${CLOUDRON_MYSQL_PASSWORD}" -h mysql --database="${CLOUDRON_MYSQL_DATABASE}" -N -B -e "select is_actived from login_source WHERE name='cloudron';")
 | 
					    ldap_status=$(mysql -u"${CLOUDRON_MYSQL_USERNAME}" -p"${CLOUDRON_MYSQL_PASSWORD}" -h mysql --database="${CLOUDRON_MYSQL_DATABASE}" -N -B -e "select is_active from login_source WHERE name='cloudron';")
 | 
				
			||||||
    [[ -z "${ldap_status}" ]] && ldap_status="1"
 | 
					    [[ -z "${ldap_status}" ]] && ldap_status="1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    now=$(date +%s)
 | 
					    now=$(date +%s)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if mysql -u"${CLOUDRON_MYSQL_USERNAME}" -p"${CLOUDRON_MYSQL_PASSWORD}" -h mysql --database="${CLOUDRON_MYSQL_DATABASE}" \
 | 
					    if mysql -u"${CLOUDRON_MYSQL_USERNAME}" -p"${CLOUDRON_MYSQL_PASSWORD}" -h mysql --database="${CLOUDRON_MYSQL_DATABASE}" \
 | 
				
			||||||
        -e "REPLACE INTO login_source (id, type, name, is_actived, cfg, created_unix, updated_unix) VALUES (1,2,'cloudron',${ldap_status},'{\"Name\":\"cloudron\",\"Host\":\"${CLOUDRON_LDAP_SERVER}\",\"Port\":${CLOUDRON_LDAP_PORT},\"UseSSL\":false,\"SkipVerify\":true,\"BindDN\":\"${CLOUDRON_LDAP_BIND_DN}\",\"BindPassword\":\"${CLOUDRON_LDAP_BIND_PASSWORD}\",\"UserBase\":\"${CLOUDRON_LDAP_USERS_BASE_DN}\",\"AttributeUsername\":\"username\",\"AttributeName\":\"displayname\",\"AttributeSurname\":\"\",\"AttributeMail\":\"mail\",\"Filter\":\"(\\\\u007C(mail=%[1]s)(username=%[1]s))\"}','${now}','${now}');"; then
 | 
					        -e "REPLACE INTO login_source (id, type, name, is_active, cfg, created_unix, updated_unix) VALUES (1,2,'cloudron',${ldap_status},'{\"Name\":\"cloudron\",\"Host\":\"${CLOUDRON_LDAP_SERVER}\",\"Port\":${CLOUDRON_LDAP_PORT},\"UseSSL\":false,\"SkipVerify\":true,\"BindDN\":\"${CLOUDRON_LDAP_BIND_DN}\",\"BindPassword\":\"${CLOUDRON_LDAP_BIND_PASSWORD}\",\"UserBase\":\"${CLOUDRON_LDAP_USERS_BASE_DN}\",\"AttributeUsername\":\"username\",\"AttributeName\":\"displayname\",\"AttributeSurname\":\"\",\"AttributeMail\":\"mail\",\"Filter\":\"(\\\\u007C(mail=%[1]s)(username=%[1]s))\"}','${now}','${now}');"; then
 | 
				
			||||||
        echo "==> LDAP Authentication was setup with activation status ${ldap_status}"
 | 
					        echo "==> LDAP Authentication was setup with activation status ${ldap_status}"
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
        echo "==> Failed to setup LDAP authentication"
 | 
					        echo "==> Failed to setup LDAP authentication"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user