box-linux-sync icon indicating copy to clipboard operation
box-linux-sync copied to clipboard

davfs2 check incompatible

Open Atoms opened this issue 11 years ago • 0 comments

Hello,

on Centos 6.5 installed davfs2 and ./box-sync check gives error about davfs2 not installed, checked source and found bug in setup.py on line 62

for davfs_file in ['/usr/sbin/mount.davfs', '/sbin/umount.davfs', '/etc/davfs2/davfs2.conf']:

should be

for davfs_file in ['/sbin/mount.davfs', '/sbin/umount.davfs', '/etc/davfs2/davfs2.conf']:

fixed in file and check run smootly.

Atoms avatar Aug 17 '14 20:08 Atoms