| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
We were doing fine at this except for one case, where the contents of the
customize combo are displayed for the first time.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Some users expect that when they select language Anaconda automatically
sets their keyboard layout to the one that is default for the selected
language. But this would not be a good implicit behaviour because we would
be changing layout in background without letting user now. Adding checkbox
for the behaviour some users want seems to be a best solution.
|
|
|
|
|
|
|
| |
Since we are not switching layouts on selection changes we shouldn't state
that in the label above the testing area.
Resolves: rhbz#854557
|
|
|
|
|
|
|
|
|
| |
Commit 70e339b86b0d4a000e0e62253703ac4ca8618b74 introduced the bug
resulting in almost empty dictionary of country layout variants.
Iteration over countries uses the same _get_variant method as iteration
over languages, but comes afterwards. The check added in
70e339b86b0d4a000e0e62253703ac4ca8618b74 fails for almost every layout
that is processed in iteration over countries.
|
|
|
|
| |
Regards NM's default autoconnections.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A StorageDevice containing a DiskLabel will have both an originalFormat
and a format attribute, both of which are DiskLabel instances. They are
copied using a shallow copy, so they share _partedDisk and _origPartedDisk
attributes. That means you only have to do partition removals from the
parted Disk once.
When you make a deep copy of such a StorageDevice, things change. The
originalFormat and format no longer share a single _partedDisk or
_origPartedDisk. In this case, it is sometimes necessary to remove
a partition from both self.disk.format and self.disk.originalFormat.
|
|
|
|
|
|
|
|
| |
There is some argument that grub2 does not do well with non-partition
/boot (https://bugzilla.redhat.com/show_bug.cgi?id=737508#c75).
Also, this change brings the defaults in line with our own automatic
partitioning.
|
| |
|
|
|
|
| |
We were doing this elsewhere, but not when a selector was clicked on.
|
|
|
|
|
|
| |
Remember that after the refresh method, a show_all() will be called. Thus it's
not good enough to call hide. You must also call set_no_show_all(True) on the
widgets you want to be hidden.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Should storage ever get reset (which it can in the case of moving back to
the hub from reclaim, resulting in an error), any protected attributes will
be wiped. protectedDevSpecs is the definitive source for what's protected
and what's not.
The dev.protected lines are still there in case we do not hit an error.
|
| |
|
| |
|
| |
|
|
|
|
| |
You always want to let things settle, so just take care of it.
|
|
|
|
|
| |
The same complicated rules apply when reformat is toggled as when
populating the right side.
|
|
|
|
| |
Related: rhbz#884270
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Then later when we are setting up filesystems, do not tear down protected
devices.
|
|
|
|
|
|
|
|
|
|
|
|
| |
mdadm 3.2.4 made a major change in the amount of space used for 1.1 and
1.2 metadata in order to reserve space for reshaping. See commit
508a7f16 in the upstream mdadm repository.
This has resulted in a large difference between what anaconda thinks the
size of the array should be and what it actually is.
We now use 2.0MB for metadata that isn't 1.1 or 1.2
For 1.1 and 1.2 we calculate the reserved space value and use that.
|
|
|
|
|
| |
Also removes urlgrabber.grabber.reset_curl_obj() from getDefaultHostname()
where all its job were to cause races occasionally.
|
| |
|
| |
|
|
|
|
|
|
| |
In dracut we set ONBOOT=yes for --activate so that NM activates
the device upon its start, in anaconda we set the real value
of ONBOOT.
|
|
|
|
| |
It was replaced by self.set_info, self.set_error and self.set_warning.
|
|
|
|
|
|
|
| |
Commit 2c367ec88e7385892cb1cdd1f2e1a61079d2e5de brings set_info,
set_warning and set_error methods for our BaseWindow, but neither
Chris writing the patch nor me doing the review noticed that set_info
is used in all cases in the GUIObject's methods.
|
| |
|
|
|
|
|
|
|
|
|
| |
Basically, _setupDevice gets confused when there's a symlink involved in the
path and /proc/mounts does not match what we expect. Thus, just make sure
we resolve symlinks to their real path before feeding them to get_mount_device.
Also, don't print some mount-related log messages if they'd say something like
"None is already mounted".
|
|
|
|
|
| |
There's no translation work to be done here, since "_Done" should already
be translated from earlier changes.
|
| |
|
|
|
|
|
| |
It's pretty confusing to click "Set as Boot Loader" to toggle installing a
boot loader off.
|
|
|
|
|
|
| |
Write only /etc/vconsole.conf.
Signed-off-by: Brian C. Lane <bcl@redhat.com>
|
|
|
|
|
|
| |
Write only /etc/locale.conf.
Signed-off-by: Brian C. Lane <bcl@redhat.com>
|