- Add docs/README.md with project overview and current status - Add docs/architecture.md with detailed architecture documentation - Add docs/development.md with development guide for contributors - Update .notes/todo.md to reflect architecture fix completion - Update .notes/plan.md with completed phases and next priorities Architecture fixes (daemon and dbus), bubblewrap integration are now complete. Ready for OCI integration phase.
28 lines
No EOL
812 B
Bash
Executable file
28 lines
No EOL
812 B
Bash
Executable file
#!/bin/bash
|
|
# Clean up individual fix scripts after consolidation
|
|
|
|
echo "=== Cleaning Up Individual Fix Scripts ==="
|
|
echo
|
|
|
|
echo "Removing individual fix scripts (keeping the consolidated version)..."
|
|
rm -f fix-daemon-startup.sh
|
|
rm -f fix-dbus-access.sh
|
|
rm -f fix-dbus-user.sh
|
|
rm -f fix-dbus-access-final.sh
|
|
rm -f fix-service-type.sh
|
|
rm -f continue-from-build.sh
|
|
rm -f continue-from-build-fixed.sh
|
|
rm -f debug-daemon.sh
|
|
rm -f simple-dbus-fix.sh
|
|
rm -f fix-dbus-simple.sh
|
|
rm -f fix-dbus-complete.sh
|
|
rm -f fix-dbus-policy.sh
|
|
rm -f diagnose-dbus.sh
|
|
rm -f test-dbus-manual.sh
|
|
|
|
echo "✓ Individual fix scripts removed."
|
|
echo
|
|
echo "Keeping the consolidated script: apt-ostree-complete-fix.sh"
|
|
echo "This script contains all the fixes in one comprehensive solution."
|
|
echo
|
|
echo "Usage: sudo ./apt-ostree-complete-fix.sh" |