Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arg -o should be possible after destination (mount.fuse compatability) #100

Open
Tracked by #89
maysara opened this issue Nov 17, 2021 · 0 comments
Open
Tracked by #89
Labels
bug Something isn't working

Comments

@maysara
Copy link

maysara commented Nov 17, 2021

trying to use httpdirfs in conjuncton with autofs , and thus mount.fuse would always pass -o options after the destination argument, although httpdirfs accepts the -o argumnet, but it crashes when it is used as a later argument.

A quick hack to solve this for me would be creating an executable (say httdirfs2) with the following to change the order:

src=$1; shift
dst=$1; shift
httpdirfs $* $src $dst

@fangfufu fangfufu added the bug Something isn't working label Nov 17, 2021
@fangfufu fangfufu mentioned this issue Apr 30, 2022
10 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants