`getDevicesBySerial` has no callers and the other two don't offer any value beyond their list comprehension equivalents `[d for d in dt.devices if isinstance(d, cls)]` (`getDevicesByInstance`) and `[d for d in dt.devices if d.type == devtype]` (`getDevicesByType`).
The first patch establishes a basic procedure for deprecating things in blivet. The warnings will only be logged if someone has called `blivet.util.set_up_logging`.
--
To view this pull request on github, visit https://github.com/rhinstaller/blivet/pull/160
Anaconda got stuck because the libiscsi module wasn't installed on my boot.iso and we can fail better than that.
--
To view this pull request on github, visit https://github.com/rhinstaller/blivet/pull/168
`getDevicesBySerial` has no callers and the other two don't offer any value beyond their list comprehension equivalents `[d for d in dt.devices if isinstance(d, cls)]` (`getDevicesByInstance`) and `[d for d in dt.devices if d.type == devtype]` (`getDevicesByType`).
The first patch establishes a basic procedure for deprecating things in blivet. The warnings will only be logged if someone has called `blivet.util.set_up_logging`.
--
To view this pull request on github, visit https://github.com/rhinstaller/blivet/pull/160
Hide curl 404 errors while downloading updates.img/product.img/.treeinfo from repository.
Resolves: rhbz#1182776
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/159
systemd added handling of some root=live: cmdline args, dracut adjusted
and started using a systemd generator that is run early, based on the
cmdline, and stopped creating a mount hook when dmsquash-live-root is
called.
There should be a cleaner way for us to interact with dracut, but isn't.
So for now (in the interest of being able to boot and test things) we
will write the dracut mount hook ourselves.
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/160
The software and source spokes were updating their messages on different
payload events, resulting in some confusing message mismatches.
On STATE_PACKAGE_MD, the statuses displayed would be:
| Probing storage... | Downloading package metadata... |
Followed by STATE_GROUP_MD, which updated to:
| Downloading package metadata... | Downloading group metadata... |
Change the source spoke to set the package metadata on the right state
and update the status on STATE_GROUP_MD to match the software spoke.
Moved all the actual messages out of the spokes and into constants.py.
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/162