Add migrated users information.

netsetup
Mike Hiretsky 13 years ago
parent b942984efe
commit 2872af8f69

Binary file not shown.

@ -862,11 +862,17 @@ class cl_install(color_print, SignalInterrupt):
flash = clGet('os_install_root_type')=="flash"
usbhdd = clGet('os_install_root_type')=="usb-hdd"
hdd = clGet('os_install_root_type')=="hdd"
if not flash:
musers = ", ".join(set(clGet('cl_migrate_user'))-set(['root'])) \
or _("none")
else:
musers = _("none")
printData = [
[(_("System information"),True),
(_("Computer name"),clGet('os_install_net_hostname'),not flash),
(_("Domain name"),clGet('os_install_net_domain'),not flash),
(_("Users"), musers,not flash),
(_("Network devices"),clGet('os_net_interfaces_info'),hdd),
(_("Installed system"),installedSystem,True)
],

Loading…
Cancel
Save