-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Allow mounting of multiple volumes to mount properties #2264
Conversation
Build # 251 - FAILED Please check console output at https://ci.codenvycorp.com/job/che-pullrequests-build/251/ to view the results. |
+1 - this is a huge improvement. Opens up many use cases for adoption. |
about separator, currently it's tab character. I could replace it with another character but I've seen in mount syntax that so if someone has an idea of a character never used inside mount syntax ? |
I did a search and ext4 file systems allow anything but null and forward-slash |
Colon is used for setting read-write access to volumes. I suggest semicolon. Tab is not so easy to recognize because it can be confused with several spaces. |
@garagatyi as I said in my initial comment, semicolon is used for some syntax https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man8/mount_smbfs.8.html
|
what is the status ? I keep tab, I use semi colon ? I merge ? |
Lets gow ith semicolon. |
Note: it could be used for machine.server.extra.volume for example Change-Id: Ic029b47511f784d41e906e0c2b570869466f605e Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>
What does this PR do?
allow to specify multiples volumes to mount for all mount properties
including
che.properties
machine.server.extra.volume
propertyNew behavior
Volumes names can be separated by semi colon character ;
machine.server.extra.volume=/tmp/foo:/tmp/foo;/tmp/dummy:/tmp.dummy
PR type
Minor change checklist
Change-Id: Ic029b47511f784d41e906e0c2b570869466f605e
Signed-off-by: Florent BENOIT fbenoit@codenvy.com