| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
| |
Spokes are imported very early (when the UI is being constructed), which is
before a language has been chosen. Thus, any strings at the top of the file
will be set up with the original translation, not the translation the user
selects. The fix is to simply translate them when they are needed and not
before.
|
| |
|
| |
|
|
|
|
|
|
| |
This got broken by commit 33673a5c0. Previously after reclaim we would
run through on_continue_clicked again and presumably go through the
"continue" path, which is where we'd prompt for the passphrase.
|
|
|
|
|
| |
We didn't apply the checks/controls of the dialog until some text was
entered, which allowed users to click through without entering anything.
|
| |
|
| |
|
|
|
|
|
| |
It used to happen automatically but there was a change in NM so
we need to manage it ourselves (until we have secret agent).
|
|
|
|
|
|
|
| |
This is an ugly hack, but it gets nfsiso working. You can switch from
NFSISO to another source, and back to the same NFSISO, just not to a
different NFSISO. That's going to have to be a "known issue" for F18
Beta.
|
| |
|
|
|
|
|
| |
This is only for F18, we really need a better solution for
the future.
|
|
|
|
|
|
|
| |
Encoding should go between _territory and @script. Neither script nor is
not parsed by babel.Locale.parse.
Related: rhbz#866730
|
|
|
|
| |
Signed-off-by: Vratislav Podzimek <vpodzime@redhat.com>
|
| |
|
|
|
|
| |
If no value is < 1000, return the value in YBs.
|
|
|
|
|
|
|
| |
Ensure the root partition '/' is the the last partition in the image.
This is required to allow resizing the root partition on firstboot.
Signed-off-by: Brian C. Lane <bcl@redhat.com>
|
| |
|
|
|
|
|
|
| |
Note that we'll never be able to mark all the exception reporting windows as
undecorated because those all come from libreport instead of us. But this is
at least a start.
|
|
|
|
|
|
|
| |
Right now it gets lost floating around in all the free space in the bottom
right side of the screen, or even worse gets confused with the Finish
Partitioning button. This moves it to the left and up right under the
customize expander where it will hopefully be easier to find.
|
|
|
|
|
| |
This is to match the same level of indent as is being applied to the customize
expander in custom partitioning.
|
| |
|
|
|
|
|
|
| |
- Convert the button bar to a GtkToolbar with appropriate styling.
- Font changes.
- Size and alignment changes to make the accordion larger.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
it is now in pyanaconda/packaging/livepayload.py
|
|
|
|
|
| |
This adds a thread that uses os.statvfs to monitor the amount data
that has been copied to the destination mountpoints.
|
|
|
|
| |
Related: rhbz#871109
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
It sets the default autopart type, which also dictates the default
device type for new mountpoints in the custom spoke.
Glade markup provided by clumens.
Related: rhbz#870207
|
|
|
|
|
|
| |
For a partition, the selected disks indicate acceptable options for
where the partition ends up. For btrfs, raid, and lvm it indicates
the set of disks on which member/pv devices will be created.
|
|
|
|
|
|
|
| |
Containers size calculations were not taking into account the size of an
already-defined device while adjusting the size of the same device. This
meant that changing an lv size from 10G to 5G _grew_ the container by 5G
instead of shrinking it by 5G.
|
|
|
|
|
|
|
|
| |
When we remove other subvols from the main volume we can use the
requested sizes of the remaining subvols to decide the new size of
the volume.
Related: rhbz#865199
|
|
|
|
|
|
|
|
| |
Before it was taking as much as possible from the member with the most
growth, which meant that member would end up very near or at its
minimum/base size.
Related: rhbz#865199
|
|
|
|
| |
Related: rhbz#865199
|
|
|
|
|
|
|
| |
Experimentation shows that the 1MB PE START does not play into the
disk space requirements for LVs.
Related: rhbz#865199
|
|
|
|
|
| |
All disks must be in the devicetree since that is what the master disk
list (StorageSpoke.disks) is derived from.
|
| |
|
|
|
|
|
| |
We have to ignore disks with hidden formats for most purposes. Examples
of such disks are multipath member disks and fwraid member disks.
|
|
|
|
|
|
| |
This reverts commit fbc7589a05c773824888c7e74dfc3826715ec432.
Related: rhbz#870207
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Don't always force kpartx to use a delimiter. The problem is that there
are all these places that could be triggering creation of the partitions
and they need to all use the same rules for when to use a delimiter
between disk and partition number. Otherwise, how can parted know when
to use a delimiter when adding a partition to a dm disk? You'd think the
answer would be "always use a delimiter" or "never use a delimiter" but
that's not how the world works.
Also, pass -s to kpartx to wait for devices to be created before
returning since udev should be doing all the work nowadays.
|
|
|
|
|
| |
Note: When using the P_ method, the strings inside it cannot be in parens or
gettext will not pick them up.
|
| |
|
|
|
|
|
|
| |
For non-kickstart installs, we still want to display the screen even if a
language was provided on the command line as long as this is a final release.
Basically, do not skip betanag unless we're doing a kickstart install.
|
|
|
|
| |
Otherwise, no strings from glade will be displayed as translated.
|