Jeremy Katz wrote:
On Sat, 2006-02-11 at 09:24 -0600, J. Hartline wrote:
Any suggestions, any bad things about doing this to enable DVD media
under Kadischi?
If it's a tree, just use nfs:/// -- realistically, it should probably be
renamed to file:/// as that's more what it's used as (all of the actual
"nfs" specific bits are in the first stage)
Jeremy
Right. This is also where it fails, using both nfs:/ or nfs:///
In the sequence in instdata.py where /proc/mounts is opened, and the NFS
server mount
the string is split. Using a DVD media locally, there is no NFS mounts
in /proc/mounts.
Using nfs://media/dvdrecorder gives us this output:
(srv, dir) = string.split(nfsinfo, ':')
ValueError: need more than 1 value to unpack
During writeKS().
That exception is reproducable everytime.
It works ok when the path is a local directory, just not if the path is
a mountpoint, with a tree on a DVD.
J. Hartline