Skip to content

Commit 2c2ec17

Browse files
committed
rrdp-dcmi: remove extraneous -I argument from cli calls
The -I argument is to select a device, unsure why open is passed to it instead, but it doesn't seem to have any effect Signed-off-by: Pau Ruiz Safont <[email protected]>
1 parent d73135a commit 2c2ec17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml/xcp-rrdd/bin/rrdp-dcmi/rrdp_dcmi.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let ipmitool_bin = "/usr/bin/ipmitool"
2727

2828
let ipmitool args =
2929
(* we connect to the local /dev/ipmi0 if available to read measurements from local BMC *)
30-
ipmitool_bin :: "-I" :: "open" :: args |> String.concat " "
30+
ipmitool_bin :: args |> String.concat " "
3131

3232
let discover () =
3333
Utils.exec_cmd

0 commit comments

Comments
 (0)