summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installinterfacebase.py
Commit message (Collapse)AuthorAgeFilesLines
* Storage should not be interactive when building the device tree.Chris Lumens2011-11-221-139/+0
| | | | | | | | | | | | | | | | | | | This patch has the following set backs (for now): (1) All the inconsistent LVM, RAID, and uninitialized disk dialogs are gone. They will not be coming back in this format. Instead, I am planning on prompting for this sort of information on an as-needed basis when disks are selected for installation during the storage spokes. (2) DASDs will not be formatted, though the code remains behind to do so. For now it's still taking an intf argument but it's always going to be None. Again, I'm planning on doing this as-needed. I did not remove the format code because it looks like it will be useful. (3) Encrypted devices will not be added to the device tree because we can't prompt for the key. I'm not yet sure what to do about this, but it will likely take the shape of scanning these devices separately later should they ever need to be used.
* Do not traceback on mpath errors caused by faulty hardware.Ales Kozumplik2011-07-251-0/+11
| | | | Resolves: rhbz#689520
* Fix a bunch of stupid little errors pylint caught.Chris Lumens2011-07-221-0/+3
|
* Cleanup how an installer interface can declare steps it does not implement.Ales Kozumplik2011-05-191-3/+4
|
* Turn sshd setup, kicstart execution and the rescue mode into dispatch steps.Ales Kozumplik2011-05-041-0/+3
| | | | | | | | | | | | | | | | | Involves: - making the RescueInterface compatible with the gui and tui interfaces (so they all can be instantiated in the same way) - the rescue step is disabled by default and never returns. It is enabled if kickstart/command line requires it. - kickstart step is disabled by default, enabled only if a kickstart file was provided. - all the sshd methods (setting user accounts, generating keys) were moved to a separete file, 'sshd.py' - the order of actions during anaconda startup had to be changed (setupDisplay() was called before we parsed kickstart which tells us whether or not to use vnc) Related: https://fedoraproject.org/wiki/Anaconda/Features/Rework_dispatch
* Improve the translatability of strings with more than one format specifier.Chris Lumens2011-03-301-7/+5
|
* Implement a general version of InstallInterfaceBase.methodstrRepoWindow().Ales Kozumplik2011-03-221-0/+20
| | | | | | Otherwise the text installation crashes when trying to call it. Resolves: rhbz#688757
* gui: remove an unneeded parameter from questionInitializeDisk()Ales Kozumplik2011-02-101-2/+2
| | | | | | This propagates down to reinitializeDialog() and removes the parameter there too. The variable is used by DeviceTree but it only repeats what is already in the path parameter.
* Change the device reinitialization dialogMartin Gracik2010-12-201-15/+3
| | | | Resolves: rhbz#657376
* Structure the repo layout so it matches final structure better and make isys ↵Martin Sivak2010-05-311-0/+189
a real Python package. Also updates the build and autotools stuff to work with the new structure