There was some question as to whether /dev/urandom was being used for
generating user password salts, this switches to using the Python 3.4
crypt.mksalt which uses the /dev/urandom
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/433
Switch to isinstance to detect MD device types so that we correctly
report on subclasses of mdarray, and add another error string for
incomplete devices where we do not know how to count the members.
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/432
Add 3 new class methods:
1) addMetadataToUsableSpace(cls, usable_size) - takes how much space we
need and returns this space + metadata of this FS.
2) hungriestFS(cls, fs_list) - Return FS from the list which takes most
of the space by metadata. Input list is useful to filter only the
required FSs.
3) hungriestFSFromAll(cls) - Same as hungriestFS but with all
filesystems in the blivet.
--
To view this pull request on github, visit https://github.com/rhinstaller/blivet/pull/265
When we reduce metadata from device size in space check we also
need to tell user how much space he needs on root to get installation
done. That means we need to add metadata in count when calculating this
space deficit.
I need this PR: https://github.com/rhinstaller/blivet/pull/255 in blivet to make this work.
--
To view this pull request on github, visit https://github.com/rhinstaller/anaconda/pull/424