exclude LOCALE and RELEASE at startup check

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4917 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
det 17 years ago
parent 994c609cf8
commit 11656741f1

@ -131,7 +131,6 @@ public class diskUsage {
dfUnix (true);
for (int i = 0; i < allMountPoints.size(); i++)
usedVolumes.add(false);
checkVolumesInUseUnix ("DATA");
checkMapedSubDirs ();
@ -283,7 +282,9 @@ nextLine:
usable = false;
break;
}
if (!dir.endsWith ("HTCACHE")) {
if (!dir.endsWith ("HTCACHE")
&& !dir.endsWith ("LOCALE")
&& !dir.endsWith ("RELEASE")) {
checkVolumesInUseUnix (dir);
} else {
checkPathUsage (dir);

Loading…
Cancel
Save