860 if hasattr(self.config.boot_loader, "PROP_IDENT_FILE"): # Read volset ID and setup boot ident file here
This is not correct -- you're going to match on all boot_loaders because PROP_IDENT_FILE is defined in the BootLoader base class. You want:
if BootLoader.PROP_IDENT_FILE in
self.config.boot_loader.SUPPORTED_PROPS:
...
--S
_______________________________________________
caiman-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/caiman-discuss

