-
Notifications
You must be signed in to change notification settings - Fork 597
Closed
Description
When I read the Linux example about additional file systems, I immediately wonder if it's really useful and advisable to mix the well known fstab format with field names. This way the "mounts" configuration objects becomes harder to read for human beings, or at least for me.
I would prefer a configuration that looks more like fstab itself
"mounts": [
"proc /proc proc",
"tmpfs /dev tmpfs nosuid,strictatime,mode=755,size=65536k",
"devpts /dev/pts devpts nosuid,strictatime,mode=755,size=65536k",
"tmpfs /dev/shm shm nosuid,noexec,nodev,mode=1777,size=65536k"
]
This form to setup file system is well known and hasn't changed for years. Defining additional mounts could be an option and might be mixed with the object structure you propose.
But completely ignoring the form of the old fstab line format, looks to me like a bug.
Metadata
Metadata
Assignees
Labels
No labels