aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorScott Myron <samyron@gentoo.org>2004-05-11 20:13:11 +0000
committerScott Myron <samyron@gentoo.org>2004-05-11 20:13:11 +0000
commit19f7276ea7c54ba30ea0f77ba4cf33e5d3ec21a1 (patch)
tree087f83ac8da6cb95b5fc7481cfb344c3ac6ce8fa /docs
parentUpdates to GLIInstallProfile. add_network_interface added. set_network_interf... (diff)
downloadgli-19f7276ea7c54ba30ea0f77ba4cf33e5d3ec21a1.tar.gz
gli-19f7276ea7c54ba30ea0f77ba4cf33e5d3ec21a1.tar.bz2
gli-19f7276ea7c54ba30ea0f77ba4cf33e5d3ec21a1.zip
Updated GLIUtility. Added an is_nfs() method. Also fixed is_hostname
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@56 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'docs')
-rw-r--r--docs/InstallProfileTODO.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/InstallProfileTODO.txt b/docs/InstallProfileTODO.txt
index c41528a..aabd41f 100644
--- a/docs/InstallProfileTODO.txt
+++ b/docs/InstallProfileTODO.txt
@@ -23,19 +23,4 @@ Unfortunately, the _is_ip() or _is_hostname() test is going to fail (this is a b
because the true device name is "192.168.1.2:/usr/portage" rather than "192.168.1.2"
Because of this, we should probably make a test called _is_nfs()
-############################
-
-Data Structure Change:
-network_interfaces is currently this:
-{ <eth_device> : ( <pre-install device info (tuple/None)>, <post-install device info (tuple/None)>, <load at boot (bool)> ) }
-
-With pre/post-install device info as this:
-( <ip address>, <broadcast>, <netmask>, <gateway>, <alias (tuple)> )
-
-The pre/post-install device info has to change to be this:
-( <ip address>, <broadcast>, <netmask>, <alias (tuple)>)
-
-Yes, that's right, we're dropping the gateway. (See below)
-
-############################