summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Fix makeupdates to work for glade files in subdirs of spokes/ or hubs/.David Lehman2012-10-041-5/+7
|
* Fix parsing of NFS method strings (#860966)Jesse Keating2012-10-041-2/+1
| | | | iutil wants the whole string, including the nfs: part.
* 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.
* New version.Brian C. Lane2012-10-033-59/+158
|
* copy-logs changed namesBrian C. Lane2012-10-031-1/+1
|
* 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
|
* Make the log copy script the last one to runJesse Keating2012-10-031-0/+0
| | | | | Since the log copy script copies script logs, we want it to run as late as possible.
* Copy ks script logs into the install root as wellJesse Keating2012-10-031-0/+2
|
* 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-033-0/+491
| | | | | | | | | 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.
* Require the hostname package (#862419)Jesse Keating2012-10-021-0/+1
| | | | | It provides the hostname command we use in networks' setHostname function.
* New version.Chris Lumens2012-10-023-88/+96
|
* 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).
* Work the anaconda object into the VNC testJesse Keating2012-10-011-0/+4
| | | | | This makes the specific test of changing the VNC password work, since it relies on that object existing.
* 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
|
* Don't ask for VNC if we can't do itJesse Keating2012-10-011-1/+10
| | | | | | Moves the checks that were in the VNC question out to the prep for the VNC question. We don't get a simple true/false out of the question anymore.
* Skip VNC prompt if text is requested in kickstartJesse Keating2012-10-011-0/+5
|
* 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.
* Bring back prompt for VNCJesse Keating2012-09-271-12/+18
| | | | | Now that we have a spoke to handle the UI, set things up to prompt the user once again.
* Add standalone spoke to prompt for VNCJesse Keating2012-09-273-0/+140
| | | | | | 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-272-0/+6
| | | | | | | 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.
* Remove obsolete requirement on comps-extras.Bill Nottingham2012-09-261-1/+0
|
* New version.Chris Lumens2012-09-263-137/+179
|
* isys.mount needs to be told when something should be mounted NFS (#860273).Chris Lumens2012-09-261-1/+1
|