Resolved multiple critical discovery system issues: ## Discovery System Fixes - Fixed console commands not being discovered on first run - Implemented fallback discovery for empty caches - Added context-aware caching with separate cache keys - Fixed object serialization preventing __PHP_Incomplete_Class ## Cache System Improvements - Smart caching that only caches meaningful results - Separate caches for different execution contexts (console, web, test) - Proper array serialization/deserialization for cache compatibility - Cache hit logging for debugging and monitoring ## Object Serialization Fixes - Fixed DiscoveredAttribute serialization with proper string conversion - Sanitized additional data to prevent object reference issues - Added fallback for corrupted cache entries ## Performance & Reliability - All 69 console commands properly discovered and cached - 534 total discovery items successfully cached and restored - No more __PHP_Incomplete_Class cache corruption - Improved error handling and graceful fallbacks ## Testing & Quality - Fixed code style issues across discovery components - Enhanced logging for better debugging capabilities - Improved cache validation and error recovery Ready for production deployment with stable discovery system. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
echo "=== Ansible-Setup für michaelschiemer.de ==="
|
|
echo "Dieses Script vereinfacht die Ausführung der Ansible-Playbooks."
|
|
|
|
if [ "$#" -lt 1 ]; then
|
|
echo "Verwendung: $0 [setup|deploy] [Zielumgebung]"
|
|
echo "Beispiel: $0 setup staging"
|
|
echo "Beispiel: $0 deploy production"
|
|
exit 1
|
|
fi
|
|
|
|
ACTION=$1
|
|
ENVIRONMENT=${2:-staging} # Standard ist staging
|
|
|
|
echo "Aktion: $ACTION"
|
|
echo "Zielumgebung: $ENVIRONMENT"
|
|
echo ""
|
|
|
|
# Wechsle in das Ansible-Verzeichnis
|
|
cd "$SCRIPT_DIR"
|
|
|
|
if [ "$ACTION" == "setup" ]; then
|
|
echo "Führe Server-Setup für $ENVIRONMENT aus..."
|
|
ansible-playbook -i inventory/hosts.ini setup.yml --limit $ENVIRONMENT -v
|
|
exit_code=$?
|
|
elif [ "$ACTION" == "deploy" ]; then
|
|
echo "Führe Deployment für $ENVIRONMENT aus..."
|
|
ansible-playbook -i inventory/hosts.ini playbooks/deploy.yml --limit $ENVIRONMENT -v
|
|
exit_code=$?
|
|
else
|
|
echo "Unbekannte Aktion: $ACTION"
|
|
echo "Erlaubte Aktionen: setup, deploy"
|
|
exit 1
|
|
fi
|
|
|
|
if [ $exit_code -eq 0 ]; then
|
|
echo "\n✅ Ansible-Ausführung erfolgreich abgeschlossen!"
|
|
else
|
|
echo "\n❌ Ansible-Ausführung fehlgeschlagen mit Fehlercode $exit_code"
|
|
fi
|