Add live TLS certificate probing and improve restart error handling.
Configure CertificateCheckUrl per container for curl-like TLS checks, classify Sonic permission errors, and extend setup wizard for container management. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -207,7 +207,10 @@ public sealed class AddTargetPathForm : Form
|
||||
if (!_lastProbe.Success)
|
||||
{
|
||||
_lblProbeResult.ForeColor = Color.FromArgb(220, 100, 100);
|
||||
_lblProbeResult.Text = _lastProbe.Message;
|
||||
_lblProbeResult.Text = _lastProbe.AccessDenied
|
||||
? CertificateProbeResult.AccessDeniedShortText
|
||||
+ " – Anmeldung am Freigabe-Pfad erforderlich."
|
||||
: _lastProbe.Message;
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user