Displaying 3 results from an estimated 3 matches for "product_short".
2011 Jul 20
0
[PATCH] change restart button label to reboot
...class NodeInstallScreen:
os.system("/usr/bin/clear;/bin/bash")
elif pressed == QUIT_BUTTON:
abort = ButtonChoiceWindow(self.screen, "Abort Installation","The installation of %s is not complete." %
- PRODUCT_SHORT, buttons = ['Back','Restart','Shutdown'])
- if abort == "restart":
+ PRODUCT_SHORT, buttons = ['Back','Reboot','Shutdown'])
+ if abort == "reboot":
os.syste...
2011 Aug 05
1
[PATCH 1/2] update comparison for presenting dowgrade/upgrade/install/reinstall options
...self.menu_list.append(" Upgrade " + e_full_ver + " to " + m_full_ver, 3)
- self.menu_list.append(" ", 4)
- else:
- self.menu_list.append(" Install " + PRODUCT_SHORT + " " + m_full_ver, 1)
- self.menu_list.append(" ", 2)
+ compare = rpm.labelCompare(('1', e_version, e_release), ('1', m_version, m_release))
+ if compare == -1:
+...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is
time to remove it from libguestfs.
[1] https://github.com/libguestfs/virt-p2v
[2] http://download.libguestfs.org/virt-p2v/
Pino Toscano (2):
Remove virt-p2v
Remove remaining virt-p2v bits
.gitignore | 4 -
Makefile.am | 7 +-
bash/Makefile.am