You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug report
As the title says, when running this script and in the presence of an Ecryptfs volume, the Disk shows double the space (available and total). Percentage obviously is right.
I have a solution: define the function
df () {
os_type=$(uname -a | cut -d' ' -f1)
if [ "$os_type" == "Linux" ]
then
$(which df) -x ecryptfs $@
else
$(which df) -t noecryptfs $@
fi
}
I defined it just before the detectdisk funciton. I've tested it on Debian Testing and on FreeBSD 14.1.
I'm submitting a ... (check one with "x")
Bug report
As the title says, when running this script and in the presence of an Ecryptfs volume, the Disk shows double the space (available and total). Percentage obviously is right.
I have a solution: define the function
I defined it just before the
detectdisk
funciton. I've tested it on Debian Testing and on FreeBSD 14.1.The text was updated successfully, but these errors were encountered: