| Summary: | mount(8) passes arguments to mount helpers in wrong order | ||
|---|---|---|---|
| Product: | Busybox | Reporter: | opal hart <opal> |
| Component: | Standard Compliance | Assignee: | unassigned |
| Status: | NEW --- | ||
| Severity: | normal | CC: | busybox-cvs, waynedpj |
| Priority: | P5 | ||
| Version: | 1.29.x | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
opal hart
2018-11-01 02:36:14 UTC
(In reply to opal hart from comment #0) #!/bin/sh echo "ARGS:$@" | Example fstab entry: | mount.test#/var/empty /tmp/foo fuse user 0 0 | | Example invocation: | % mount /tmp/foo | /var/empty /tmp/foo -o rw,noexec,nosuid,nodev I don't get that, I get: # ./busybox mount /tmp/foo ARGS:/var/empty /tmp/foo (In reply to Denys Vlasenko from comment #1) Change fstab entry to include options then. For instance, sed -i 's/user/&,nosuid,nodev/' /etc/fstab On my system (Alpine edge) it automatically includes a few options for most mounts. |