| 1 |
This file is to document what information is needed in GLIInstallProfile but isn't yet there...
|
| 2 |
|
| 3 |
############################
|
| 4 |
|
| 5 |
Method name changes (and new methods):
|
| 6 |
|
| 7 |
|
| 8 |
############################
|
| 9 |
|
| 10 |
Format change:
|
| 11 |
_partition tables has nfs type devices in the following format as a dictionary record: { <device (nfs)> : <mount point> }
|
| 12 |
However, often times options need to be added to the mount command.
|
| 13 |
Therefore the record should be like this: { <device (nfs)> : ( <mount point>, <options> ) }
|
| 14 |
options is a string of options separated by commas.
|
| 15 |
It is in the same format used by the mount command.
|
| 16 |
ie. mount -t nfs -o rw,rsize=8192,wsize=8192 192.168.1.2:/usr/portage /mnt/gentoo/usr/portage
|
| 17 |
in this case the record would be: { "192.168.1.2:/usr/portage" : ( "/usr/portage", "rw,rsize=8192,wsize=8192" ) }
|
| 18 |
Unfortunately, the _is_ip() or _is_hostname() test is going to fail (this is a bug)
|
| 19 |
because the true device name is "192.168.1.2:/usr/portage" rather than "192.168.1.2"
|
| 20 |
Because of this, we should probably make a test called _is_nfs()
|
| 21 |
|
| 22 |
|