Skip to content
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e48a97b
feat: Improve installer to add RHELD support
yllada Apr 16, 2025
91977d8
fix: Update windows ARM collector
yllada Apr 16, 2025
435cfca
wip
osmontero Apr 16, 2025
756066c
feat: Add SELinux configuration for RedHat systems
yllada Apr 16, 2025
c1ac489
Merge branch 'bugfix/10.7.2/rhel_support' into bugfix/10.8.0/macos
Kbayero Apr 18, 2025
4e50527
fix interface agent problem
Kbayero Apr 18, 2025
7b909e9
add bad gateway page
Kbayero Apr 18, 2025
1173856
complete macos agent
Kbayero Apr 19, 2025
c8e3f40
feat(module-integration): add SOC AI model selection field
mjabascal10 Apr 18, 2025
589da78
feat(module-integration): add SOC AI model selection field
mjabascal10 Apr 18, 2025
aa82e65
feat(module-integration): add SOC AI model selection field
mjabascal10 Apr 18, 2025
88def5d
feat(module-integration): update MacOS guide
mjabascal10 Apr 21, 2025
a479f61
fix custom bad gateway page creation
Kbayero Apr 22, 2025
4e56cb0
not contains operator grammar(Jose Angel)
Kbayero Apr 22, 2025
98779e7
fix(agent-details): show correct agent version and format OS version
mjabascal10 Apr 22, 2025
353ce8a
Merge remote-tracking branch 'origin/bugfix/10.8.0/macos' into bugfix…
mjabascal10 Apr 22, 2025
87a9282
Update and publish SOC-AI models
Kbayero Apr 22, 2025
4a7c819
Update UTMStack Version
Kbayero Apr 22, 2025
a87e8d6
update service agent problem
Kbayero Apr 22, 2025
e83843e
Merge branch 'main' into bugfix/10.8.0/macos
Kbayero Apr 22, 2025
8881f8e
Merge branch 'main' into bugfix/10.8.0/macos
Kbayero Apr 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent/utils/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func CheckIfServiceIsInstalled(serv string) (bool, error) {
return false, fmt.Errorf("operative system unknown")
}

return err == nil, err
return err == nil, nil
}

func CreateLinuxService(serviceName string, execStart string) error {
Expand Down
Loading