coolsnowwolf/luci

luci-app-cifs-mount 无法工作

WindyCloudCute opened this issue · 0 comments

在最新的构建尝试中发现
luci-app-cifs-mount插件出现无法挂载SMB分区的问题
排查后得知位于luci/applications/luci-app-cifs-mount/root/etc/init.d/cifs
文件内46行
mount -t cifs -o vers=$smbver,user=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath
需要改为
mount -t cifs -o vers=$smbver,username=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath
可以恢复正常使用
希望能核查一下是否正确