summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | remove Network(): hostname attributeRadek Vykydal2012-07-204-27/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NM is setting hostname and we might be resetting it in kickstart.py. It is stored in ksdata with unfortunate access (iterating over network commands). Hostname handling will need some more work in newui. Here I am just giving another stab to Network() object.
| | * | remove Network(): ksdevice attributeRadek Vykydal2012-07-203-28/+33
| | | | | | | | | | | | | | | | It is used only in kickstart.py in newui
| | * | remove Network(): copying configuration to target systemRadek Vykydal2012-07-204-74/+64
| | | |
| | * | remove Network(): remove methods needed only for old UIRadek Vykydal2012-07-202-111/+0
| | | |
| | * | remove Network(): remove another unused methodRadek Vykydal2012-07-203-34/+1
| | | |
| | * | remove Network(): better style - use anyRadek Vykydal2012-07-201-2/+1
| | | |
| | * | remove Network(): ifcfg -> dracut args mappingRadek Vykydal2012-07-201-59/+62
| | | |
| | * | remove Network(): remove unused functionsRadek Vykydal2012-07-204-215/+119
| | | | | | | | | | | | | | | | | | | | move some methods out of Network object still keeping old ui working
| * | | set ignoredisk.onlyuse only if not set by kickstartBrian C. Lane2012-07-202-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | When using a kickstart only set ignoredisk.onlyuse if it was not set in the kickstart. If setting it, filter out disks from the ignoredisk list.
| * | | rename Group and Script in kickstart.pyBrian C. Lane2012-07-201-5/+7
| | | | | | | | | | | | | | | | | | | | The import of Group from parser conflicted with the system Group class, so rename it to KSGroup. Also renamed Script to KSScript.
| * | | reraise error if there is no uiBrian C. Lane2012-07-191-1/+1
| | | |
| * | | fix grub2 install on RAIDBrian C. Lane2012-07-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | grub2 install was appending to the argument list while looping on the component devices this would result in a bogus commandline for the second device.
| * | | setup bootloader and partitioning for kickstartBrian C. Lane2012-07-193-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | after executing the kickstart commands setup the bootloader and partitions before continuing. Also add logging of any errors found by storage.sanityCheck
| * | | add execute methods for partition related ks classesBrian C. Lane2012-07-191-4/+40
| | | | | | | | | | | | | | | | Iterate over the kickstart filesystem and partition data.
| * | | refactor doKickstartStorage slightlyBrian C. Lane2012-07-193-7/+10
| |/ /
| * | And remove the .pot file's dependency on the old glade files.Chris Lumens2012-07-191-21/+0
| | |
| * | Move s390 boot device checking into sanityCheck, where it will be called.Chris Lumens2012-07-191-38/+15
| | |
| * | Remove the old UI's glade files.Chris Lumens2012-07-1922-7571/+1
| | | | | | | | | | | | | | | Without gui.py and iw/, they're not useful anymore except as examples of what not to do on newui.
* | | Add automake files for TUIMartin Sivak2012-08-0611-4/+123
| | |
* | | add couple of tests and fix write method of widget (newline added unwanted ↵Martin Sivak2012-08-062-11/+41
| | | | | | | | | | | | space)
* | | add couple of tests and support for themMartin Sivak2012-08-062-1/+93
| | |
* | | add documentation and comments to TUI classesMartin Sivak2012-08-064-36/+136
| | |
* | | Add documentation to the simpleline library for TUIMartin Sivak2012-08-062-58/+323
| | |
* | | Add the new Summary hub and Password TUI spokes + tools to test TUI stuffMartin Sivak2012-08-064-0/+158
| | |
* | | Fix bits and pieces to make TUI hub and spoke model work + example Hub and ↵Martin Sivak2012-08-069-93/+148
| | | | | | | | | | | | Password spoke
* | | Create common abstract classes usable for all types of UIMartin Sivak2012-08-0618-375/+467
| | |
* | | Create the base classes for TUI Hub and Spoke modelMartin Sivak2012-08-064-0/+225
| | |
* | | Make collect and part of UserInterface setup more genericMartin Sivak2012-08-062-5/+44
| | |
* | | Text based UI framework coreMartin Sivak2012-08-063-0/+546
|/ /
* | Do not let Lang. spoke override the selection from Welcome SpokeMartin Sivak2012-07-191-4/+10
| |
* | Actually start anaconda-cleanup-initramfs.serviceWill Woods2012-07-181-0/+1
| | | | | | | | | | | | | | | | Rule #1 of Computing: It Works Better When You Turn It On. Make anaconda.target request anaconda-cleanup-initramfs.service so it actually gets started. (cherry picked from commit d0ca82e99bc817bbe18ed8c06cb5c957c72e0f7a)
* | Update the group, rootpw, and user commands to be called from doInstall.Chris Lumens2012-07-184-43/+43
| |
* | Add a tooltip explaining size entry for new mountpoints.David Lehman2012-07-181-0/+1
| |
* | Add some new TODO items for custom partitioning.David Lehman2012-07-181-0/+6
| |
* | Add support for creating partitions.David Lehman2012-07-181-5/+62
| |
* | Set StorageCheck class attrs instead of adding instance attrs.David Lehman2012-07-181-1/+2
| |
* | Size.convertTo is supposed to return a Decimal instance.David Lehman2012-07-181-1/+1
| |
* | Hook up the kickstart firstboot command so it actually does something.Chris Lumens2012-07-176-22/+21
| | | | | | | | | | | | Note that this does not yet handle the fact that we want to skip firstboot on most kickstart installs (unless the user specifies otherwise). We need a place to load those defaults, which will be a separate patch.
* | Hide the spinner on the progress hub when we are done.Chris Lumens2012-07-171-0/+1
| | | | | | | | It looks a little silly to have it sitting there and stopped.
* | Convert the services command to using systemctl instead of chkconfig.Chris Lumens2012-07-171-4/+7
| |
* | Don't display betanag for final releases.Chris Lumens2012-07-171-1/+6
| |
* | Remove enough of dispatcher so anaconda works without partIntfHelpers.Chris Lumens2012-07-177-71/+1
| | | | | | | | | | | | | | Our tangled set of imports means that anaconda was still trying to import partIntfHelpers through dispatch and rescue mode. This patch breaks those imports (which likely further breaks rescue and upgrade modes) and makes the gui work again.
* | Add the new UI files to POTFILES.in.Chris Lumens2012-07-171-0/+15
| |
* | Fix a typo in a SpokeWindow comment.Chris Lumens2012-07-171-1/+1
| | | | | | | | | | I discovered this searching for "iw" to make sure I deleted everything related to the old interface.
* | Remove partIntfHelpers too.Chris Lumens2012-07-172-527/+0
| | | | | | | | | | | | It's now only used by the text UI, which you can't even get to right now and won't be able to until we create a whole new text interface. That one will not be using partIntfHelpers either.
* | Remove the old graphical user interface.Chris Lumens2012-07-1738-13127/+1
| | | | | | | | | | We're not using it for anything, and I don't want people looking at it for any reason anyway. If we really need to, it's still in version control.
* | More TODO list updating.Chris Lumens2012-07-161-3/+11
| |
* | Remove the Spoke check method.Chris Lumens2012-07-161-25/+0
| | | | | | | | | | | | | | The only places where we might want to run a check method are already being handled by other means, and I never figured out how to handle killing a check thread in the generic case anyway. This is clearly code we can live without.
* | A radio button cannot be in its own group.Chris Lumens2012-07-161-1/+0
| | | | | | | | Doing so will print a GTK assertion on tty1.
* | Get rid of debugging prints to stdout.Chris Lumens2012-07-163-26/+0
| | | | | | | | They're making it more difficult for me to see real error messages.