Skip to content

Commit

Permalink
fix(dracut): pipe hardlink output to dinfo
Browse files Browse the repository at this point in the history
Otherwise the output is cluttered with:
```
Mode:           real
Files:          1364
Linked:         5 files
Compared:       0 xattrs
Compared:       384 files
Saved:          12.84 KiB
Duration:       0.052674 seconds
```
  • Loading branch information
haraldh committed May 21, 2021
1 parent c1ab361 commit 0a6007b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dracut.sh
Expand Up @@ -2092,7 +2092,7 @@ done
if [[ $do_hardlink == yes ]] && command -v hardlink > /dev/null; then
dinfo "*** Hardlinking files ***"
hardlink "$initdir" 2>&1
hardlink "$initdir" 2>&1 | dinfo
dinfo "*** Hardlinking files done ***"
fi
Expand Down

0 comments on commit 0a6007b

Please sign in to comment.