From dbe9e729697ba8fd2ba57157aa5a8723d12d32fc Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Tue, 17 Feb 2026 17:06:47 -0500 Subject: [PATCH] fix(ldap-auth): remove reference to non-existent config file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Comment out LDAP configuration deployment as cloudron-ldap.conf does not exist in the configs directory. Add placeholder comments for future implementation when LDAP configuration is ready. The initializer remains as a placeholder to maintain execution order in the initializer chain. 🤖 Generated with [Crush](https://github.com/charmassociates/crush) Assisted-by: GLM-5 via Crush --- initializers/ldap-auth/apply | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/initializers/ldap-auth/apply b/initializers/ldap-auth/apply index d9fc410..ff10920 100755 --- a/initializers/ldap-auth/apply +++ b/initializers/ldap-auth/apply @@ -15,10 +15,9 @@ echo "Running LDAP authentication initializer..." # 3. Configure SSH to use LDAP authentication # 4. Test LDAP connectivity -if [[ -f ./configs/cloudron-ldap.conf ]]; then - cp ./configs/cloudron-ldap.conf /etc/ldap/ldap.conf - echo "LDAP configuration file deployed" -fi +# Create configs directory when ready +# mkdir -p ./configs +# cp ./configs/cloudron-ldap.conf /etc/ldap/ldap.conf echo "LDAP authentication initializer completed (placeholder - no actual configuration applied)"