Change message in during installation.

Change display message for migrate user. Add message after install.
master3.3
Mike Hiretsky 14 years ago
parent 3ba94c0521
commit 2f159b6f0d

@ -1762,10 +1762,11 @@ class cl_install(color_print, SignalInterrupt):
self.printByResult(True)
# migrate users
self.printSUCCESS(_("Migrate users"))
self.printMessageForTest(_("Migrate users"))
objMigrate = migrate(targetDistr.getDirectory())
if not objMigrate.migrate(addUsers,changePwdUsers,migrateUsers):
raise InstallError(_("Can not migrate users to new system"))
self.printByResult(True)
def installSystem(self, force=False, bootDisk=None, stdinReadPwd=False,
builder=False, flagSpinner=True):

@ -372,6 +372,8 @@ class install_cmd(share_cmd):
if self.logicObj.installSystem(force=force, bootDisk=bootDisk,
stdinReadPwd=stdinReadPwd, builder=builder,
flagSpinner=flagSpinner):
self.defaultPrint("\n")
self.defaultPrint(_("To apply changes you have to reboot")+".\n")
return True
else:
return False

Loading…
Cancel
Save