Skip to content

Commit

Permalink
Merge pull request #8704 from mneumann/fix-os-mon-disksup-df-dragonfly
Browse files Browse the repository at this point in the history
os_mon - include HAMMER2-FS in df(1) for DragonFly

OTP-19207
  • Loading branch information
jhogberg authored Aug 26, 2024
2 parents e6b46c8 + e2ef371 commit 8d5ffdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/os_mon/src/disksup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ run_df(Path, {unix, linux}, Port) ->
run_df(Path, {unix, posix}, Port) ->
my_cmd("df -k -P " ++ Path, Port);
run_df(Path, {unix, dragonfly}, Port) ->
my_cmd("/bin/df -k -t ufs,hammer " ++ Path, Port);
my_cmd("/bin/df -k -t ufs,hammer,hammer2 " ++ Path, Port);
run_df(Path, {unix, freebsd}, Port) ->
my_cmd("/bin/df -k -l " ++ Path, Port);
run_df(Path, {unix, openbsd}, Port) ->
Expand Down

0 comments on commit 8d5ffdc

Please sign in to comment.