hi, your module works fine. i just have one problem: every user may see the login-data used to connect to the given ftp-service by just typing mount. is there a way to keep mount from doing this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi, your module works fine. i just have one problem: every user may see the login-data used to connect to the given ftp-service by just typing mount. is there a way to keep mount from doing this?
Try using -n mount option so it won't get written in mtab.
mount -n -t ftpfs ....
This should do it.