mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[partition] Enable zfs encryption for erase disk
This commit is contained in:
parent
ba33908f9f
commit
cea2b1e8d8
1 changed files with 2 additions and 4 deletions
|
@ -1750,10 +1750,8 @@ ChoicePage::shouldShowEncryptWidget( Config::InstallChoice choice ) const
|
||||||
// If there are any choices for FS, check it's not ZFS because that doesn't
|
// If there are any choices for FS, check it's not ZFS because that doesn't
|
||||||
// support the kind of encryption we enable here.
|
// support the kind of encryption we enable here.
|
||||||
bool suitableFS = true;
|
bool suitableFS = true;
|
||||||
if ( ( m_eraseFsTypesChoiceComboBox && m_eraseFsTypesChoiceComboBox->isVisible()
|
if ( m_replaceFsTypesChoiceComboBox && m_replaceFsTypesChoiceComboBox->isVisible()
|
||||||
&& m_eraseFsTypesChoiceComboBox->currentText() == "zfs" )
|
&& m_replaceFsTypesChoiceComboBox->currentText() == "zfs" )
|
||||||
|| ( m_replaceFsTypesChoiceComboBox && m_replaceFsTypesChoiceComboBox->isVisible()
|
|
||||||
&& m_replaceFsTypesChoiceComboBox->currentText() == "zfs" ) )
|
|
||||||
{
|
{
|
||||||
suitableFS = false;
|
suitableFS = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue