Skip to content

Commit

Permalink
add missing start arg
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcacheux committed Jan 25, 2025
1 parent 6877b01 commit 18414f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omnibus/python-scripts/security-agent-shim.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ def is_compliance_config_enabled(core_config: str):
print(f"Could not find system-probe config at {args.sysprobe_config}")

if is_runtime_security_config_enabled(core_config, sysprobe_config) or is_compliance_config_enabled(core_config):
os.execlp("security-agent", "security-agent", "-c", args.cfgpath, "--sysprobe-config", args.sysprobe_config)
os.execlp("security-agent", "security-agent", "start", "-c", args.cfgpath, "--sysprobe-config", args.sysprobe_config)

0 comments on commit 18414f9

Please sign in to comment.