-
Help ! I use a new Raspberry Pi 5 with Debian bookworm. If I have mountpoints /srv/usb3disk1 ... /srv/usb3disk8 and use glob below in fstab
is it guaranteed that mergerfs will mount them in strict numerical order ? i.e. I need that to happen since I need ffd to operate in that order :) I tried /srv/usb3disk{1..8}/mediaroot but it treated it as text. On reflection, I'm not sure mergerfs can affect glob to do a sort (as most people would perhaps subconsciously expect) ... can it ? While I'm asking, is there a way to "continue" lines in fstab onto the following line ? Debian bookworm. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
mergerfs uses glob function which sorts the values by default. Likely with a standard radix sort. I have no intention or reason to change the code to not sort. Naturally I can change the code to do whatever but there is no reason to do so. I'm not aware of any way to break lines in fstab. |
Beta Was this translation helpful? Give feedback.
mergerfs uses glob function which sorts the values by default. Likely with a standard radix sort. I have no intention or reason to change the code to not sort. Naturally I can change the code to do whatever but there is no reason to do so.
I'm not aware of any way to break lines in fstab.