Skip to content

Commit abe1e83

Browse files
committed
fix reload nginx fixer
1 parent 8ca89a1 commit abe1e83

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/actions/panelinstall/fixers.go

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ func tryToFixPanelInstallation(ctx context.Context, state panelInstallState) (pa
2222
{
2323
Name: "Reload nginx",
2424
Condition: func(ctx context.Context) (bool, error) {
25+
if state.WebServer != nginxWebServer {
26+
return false, nil
27+
}
28+
2529
osInfo := contextInternal.OSInfoFromContext(ctx)
2630

2731
return osInfo.IsLinux(), nil

0 commit comments

Comments
 (0)