summaryrefslogtreecommitdiffstats
path: root/pyanaconda
Commit message (Collapse)AuthorAgeFilesLines
...
* More TODO list updates.Chris Lumens2012-10-051-0/+9
|
* Add a label to the resize dialog for how much space is required.Chris Lumens2012-10-053-6/+20
|
* Add a column to the disk shopping cart for setting the boot device (#860430).Chris Lumens2012-10-052-37/+127
|
* Rework the disk shopping cart link a little bit.Chris Lumens2012-10-052-51/+49
| | | | This is to make way for the boot device picking option.
* Do not use constant value in SoftwareSpoke's completed propertyVratislav Podzimek2012-10-051-2/+2
| | | | | | | | packagesSeen is a value, that should not be changed in spokes. Using it as a condition for the completed property results in no way of completing software spoke in kickstart installation without %packages section. Without %packages section in kickstart, SoftwareSpoke's completed method should use the same code as in manual installations.
* Pull in existing swaps and bootloader devices whenever there are mounts.David Lehman2012-10-041-1/+1
| | | | Not just when we have old devices set up as mounts.
* Revert broken logic for newly formatted devices in unusedDevices.David Lehman2012-10-041-1/+1
| | | | | If the device's formatting does not exist that necessarily means the device is in use.
* Add an apply button to the device/mountpoint configuration options.David Lehman2012-10-042-8/+49
|
* Don't base StorageSpoke.ready on storage execute thread presence. (#861574)David Lehman2012-10-041-3/+8
|
* Prevent systemd timeout waiting for encryption passphrase. (#861123)David Lehman2012-10-041-0/+2
|
* Fix traceback when switching device type to lvm. (#860990)David Lehman2012-10-041-0/+1
|
* Fix error handling in the add mountpoint dialog. (#860992)David Lehman2012-10-041-0/+2
|
* Allow xfs /boot.David Lehman2012-10-041-1/+1
|
* Make the URL entry sensitive for NFS installs, too (#863014).Chris Lumens2012-10-041-2/+3
|
* Add in a locale mapping to avoid incorrect system settings (#858591).Chris Lumens2012-10-041-3/+23
| | | | | | | | | | | | | | This is pretty terrible, sorry. Basically the problem is that we need to write out full locale settings to /etc/sysconfig/i18n or lots and lots of things on the system are broken. For instance, "de_DE.UTF-8" is good but "de.UTF-8" is not. Unfortunately I can find no suitable way to extract this information via python-babel. I think our intention is that using geoip will get us the full locale, but there's no time to do that now. lang-table used to contain this mapping for us, but I really don't want to add that file back. This fix should be considered temporary.
* Reference correct UI button name (#862409)Jesse Keating2012-10-031-1/+1
|
* Don't echo vnc password to the screen (#862593)Jesse Keating2012-10-031-2/+3
|
* Create ks script logs outside of chrootJesse Keating2012-10-031-8/+7
| | | | | By always creating them outside the chroot, we can copy them into the chroot later into a non tmpfs filesystem.
* Don't look for ifcfgs of wireless devices (#860791)Radek Vykydal2012-10-031-0/+2
| | | | It is connections that are relevant here.
* doAutoPartition should raise errors instead of handle them.Chris Lumens2012-10-032-13/+6
| | | | | | | This avoids a confusing situation where you return to the hub and get an error dialog you can only exit anaconda from. Also, put errors from doAutoPartition into self.errors on the storage spoke so they are viewable by clicking on the info bar.
* In the install options dialogs, call out how much space is on selected disks.Chris Lumens2012-10-032-8/+79
| | | | | | | The idea here is that the dialog says you can make enough space to install by resizing or deleting, but only ever mentions how much space is available if you do resizing. That seems weird to me, so I've added another row that shows how much space is in all the selected disks.
* In order to display the resize prompt dialog, we need to compare Sizes to Sizes.Chris Lumens2012-10-031-1/+3
|
* Use a better starting value for required space than 0.Chris Lumens2012-10-031-1/+4
|
* Default to CLEARPART_TYPE_NONE (#855976).Chris Lumens2012-10-031-7/+2
| | | | | With the resize dialog, we have UI for everything now and can send the user through a path that'll allow them to make space.
* Remove some unused clearpart-related settings.Chris Lumens2012-10-031-2/+0
|
* Hook up the new resize dialog.Chris Lumens2012-10-031-2/+9
|
* Add a resize dialog.Chris Lumens2012-10-032-0/+489
| | | | | | | | | This allows shrinking and deleting of individual partitions in order to make enough room to do an installation. All shrinking and deleting happens as scheduled actions which will be executed later, therefore eliminating the need for progress and error reporting in this dialog. It's not hooked up quite yet.
* Use gdk_threaded() when running AddLayout dialogVratislav Podzimek2012-10-021-3/+4
| | | | | | Without this whole GUI hangs in case this dialog is run to choose replacement for the last layout in the list of added layouts (minus button clicked).
* Use askvnc spoke to change vnc passwordJesse Keating2012-10-011-166/+17
| | | | | | This cleans up a lot of stuff in this file by making use of the spoke we have instead of newt. There are also a few whitespace fixes and removals of unnecessary imports.
* Fix logic error in vnc password length checkJesse Keating2012-10-011-1/+1
|
* Allow vncpassword spoke text to be configurableJesse Keating2012-10-011-3/+7
|
* KEYTABLE is now vconsole.keymap (#859298)Brian C. Lane2012-10-011-1/+1
|
* The partitionErrorHandler text needs a 's' in the format string (#861376).Chris Lumens2012-10-011-1/+1
|
* Fix a problem with storage error handling (#861376).Chris Lumens2012-10-011-1/+1
|
* Fix bootloader setup on s390. (#857940)David Lehman2012-09-282-7/+8
|
* Make Keboard and Welcome spokes runtime-system friendlyVratislav Podzimek2012-09-283-8/+31
|
* Make DateTime spoke runtime-system friendlyVratislav Podzimek2012-09-281-13/+41
|
* Add a guard for testing if we can modify runtime systemVratislav Podzimek2012-09-281-0/+27
| | | | | | | | | | Using "if flags.liveCDinstall or flags.imageInstall or flags.testing" over and over is incovinient, one may forget to involve some of the conditions and there is no logging of the skipped actions. This patch adds flags.can_touch_runtime_system function, that can be used as a guard and that logs skipped actions. It can also be easily mocked or masked for the needs of testing.
* Add standalone spoke to prompt for VNCJesse Keating2012-09-272-0/+139
| | | | | | This gets used if text mode is requested or if X startup fails. We don't (yet) prompt the user for advanced VNC configuration such as port number or to connect to an existing system.
* Fail on incomplete ksdata when in cmdline modeJesse Keating2012-09-271-0/+3
| | | | | cmdline means no prompting, so if we have spokes that are incomplete, raise the error.
* Add a flag attribute to handle cmdline modeJesse Keating2012-09-271-0/+2
| | | | | | | cmdline mode means do not prompt for missing kickstart data. We need a way to expose this setting to the interface, so create a flag for it. "cmdline" cannot be used because that already exists as a flag, so "ksprompt" is created as a bool. Defaults to true.
* fix libuser setup (#855481)Brian C. Lane2012-09-271-5/+4
| | | | | createLuserConf needs to be called before the first use of User(). Also cleaned up some whitespace.
* isys.mount needs to be told when something should be mounted NFS (#860273).Chris Lumens2012-09-261-1/+1
|
* Disks with new disklabels don't count as new devices in custom.David Lehman2012-09-261-1/+2
|
* Fix thread synchronization issue going from storage to custom. (#860495)David Lehman2012-09-261-0/+9
|
* Treat disks with unrecognized or no formatting as empty. (#858862)David Lehman2012-09-261-0/+2
|
* Improve management of mountpoint selectors in the custom spoke.David Lehman2012-09-262-69/+191
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add/set mountpoint: - new device - add selector to new install page - new filesystem on old device - add selector to new install page - remove selector(s) from old install root page(s) - old filesystem on old device - add selector to new install page - leave selector(s) in old install root page(s) Remove mountpoint from new install page: - new device - destroy the device (cancel its scheduled creation) - remove the selector from the new install page - new filesystem on old device - reset the device to its initial state - remove the selector from the new install page - add the selector(s) back to any old install page(s) - old filesystem on old device - reset the device to its initial state (mountpoint) - remove the selector from the new install page - leave the selector(s) in any old install page(s) Remove mountpoint from old install page: - destroy the device - remove selector(s) from any old or new install page(s) Other changes: - Remove remove_from_root method. - We don't want to modify the Root instances. We won't be showing devices that are no longer present, so there should be no harm in leaving the Roots intact. - Remove _update_ui_for_removals since it's only called from one method. - Protect more signal handlers from running during refresh. - Use constants for flipping pages in the partitionsNotebook.
* Improve handling of existing devices when refreshing the custom spoke.David Lehman2012-09-261-8/+16
|
* Apply custom changes not involving actions to the main devicetree.David Lehman2012-09-261-0/+16
|
* Add a mountpoint entry to the device options area.David Lehman2012-09-262-32/+123
| | | | This allows users to assign mountpoints to existing devices.