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
First, I want to thank you for publishing this nice image.
I found an issue regarding the recycle bin, that turns it off will also disable all vfs objects. This is because the sed in recycle function deletes all lines that contain the word recycle:
recycle() { local file=/etc/samba/smb.conf
sed -i '/recycle/d; /vfs/d' $file
}
Hi,
First, I want to thank you for publishing this nice image.
I found an issue regarding the recycle bin, that turns it off will also disable all vfs objects. This is because the
sed
inrecycle
function deletes all lines that contain the wordrecycle
:This will delete all three lines below:
and hence disables other features, e.g. Time Machine which relies on the vfs
fruit
.This issue can be fixed by just deleting the substring
recycle
from the first line, and leaves others unchanged. Here is a fix with a dirty regex:which will output
The last two lines can be left as-is without an impact.
The text was updated successfully, but these errors were encountered: