1 parent ae58d7b commit 765b502Copy full SHA for 765b502
1 file changed
super-install.sh
@@ -96,6 +96,16 @@ bootstrap_system() {
96
97
systemctl restart apparmor || true
98
systemctl restart docker || true
99
+
100
+ if ! systemctl is-active --quiet apparmor; then
101
+ echo "[super-install] ERROR: apparmor.service is not active after fix. Showing logs:"
102
+ journalctl -u apparmor.service --no-pager -n 120 || true
103
+ fi
104
105
+ if ! systemctl is-active --quiet docker; then
106
+ echo "[super-install] WARNING: docker.service is not active after fix."
107
+ systemctl status docker --no-pager -l || true
108
109
fi
110
111
0 commit comments