Skip to content
Snippets Groups Projects
Commit 6acb1797 authored by Dmitry Kalinkin's avatar Dmitry Kalinkin
Browse files

apply workaround to select leaf directories

parent 1a86b855
No related branches found
No related tags found
1 merge request!168Draft: run du
Pipeline #122476 passed
......@@ -105,7 +105,7 @@ common:setup:
echo "removing broken symlinks"
find `realpath /scratch` -xtype l -print -delete
echo "listing most offending directories"
find `realpath /scratch` -type d -print0 | (du -sL --files0-from=- || true) | sort -n > /tmp/df
find `realpath /scratch` -type d -links 2 -print0 | (du -sL --files0-from=- || true) | sort -n > /tmp/df
#echo "listing cached entries by size"
#find `realpath /scratch` -type l -print0 | (du -sL --files0-from=- || true) | sort -n > /tmp/df
#find `realpath /scratch` -type f -print0 | du -s --files0-from=- || true | sort -n > /tmp/df
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment