fix(ldap-auth): remove reference to non-existent config file

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 <crush@charm.land>
This commit is contained in:
Charles N Wyble
2026-02-17 17:06:47 -05:00
parent ab6583cc88
commit dbe9e72969

View File

@@ -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)"