Merge pull request #2316 from SixK/calamares
[partition] add option for the encryption checkbox to be checked by default
This commit is contained in:
commit
1c1ade6816
@ -444,6 +444,7 @@ Config::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
m_allowZfsEncryption = Calamares::getBool( configurationMap, "allowZfsEncryption", true );
|
m_allowZfsEncryption = Calamares::getBool( configurationMap, "allowZfsEncryption", true );
|
||||||
|
|
||||||
m_allowManualPartitioning = Calamares::getBool( configurationMap, "allowManualPartitioning", true );
|
m_allowManualPartitioning = Calamares::getBool( configurationMap, "allowManualPartitioning", true );
|
||||||
|
m_preCheckEncryption = Calamares::getBool( configurationMap, "preCheckEncryption", false );
|
||||||
m_showNotEncryptedBootMessage = Calamares::getBool( configurationMap, "showNotEncryptedBootMessage", true );
|
m_showNotEncryptedBootMessage = Calamares::getBool( configurationMap, "showNotEncryptedBootMessage", true );
|
||||||
m_requiredPartitionTableType = Calamares::getStringList( configurationMap, "requiredPartitionTableType" );
|
m_requiredPartitionTableType = Calamares::getStringList( configurationMap, "requiredPartitionTableType" );
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ class Config : public QObject
|
|||||||
replaceModeFilesystemChanged )
|
replaceModeFilesystemChanged )
|
||||||
|
|
||||||
Q_PROPERTY( bool allowManualPartitioning READ allowManualPartitioning CONSTANT FINAL )
|
Q_PROPERTY( bool allowManualPartitioning READ allowManualPartitioning CONSTANT FINAL )
|
||||||
|
Q_PROPERTY( bool preCheckEncryption READ preCheckEncryption CONSTANT FINAL )
|
||||||
Q_PROPERTY( bool showNotEncryptedBootMessage READ showNotEncryptedBootMessage CONSTANT FINAL )
|
Q_PROPERTY( bool showNotEncryptedBootMessage READ showNotEncryptedBootMessage CONSTANT FINAL )
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -148,6 +148,13 @@ public:
|
|||||||
/// @brief Is manual partitioning allowed (not explicitly disabled in the config file)?
|
/// @brief Is manual partitioning allowed (not explicitly disabled in the config file)?
|
||||||
bool allowManualPartitioning() const { return m_allowManualPartitioning; }
|
bool allowManualPartitioning() const { return m_allowManualPartitioning; }
|
||||||
|
|
||||||
|
/** @brief pre check encryption checkbox.
|
||||||
|
*
|
||||||
|
* parameter is used if enableLuksAutomatedPartitioning is true.
|
||||||
|
* Default value is false
|
||||||
|
*/
|
||||||
|
bool preCheckEncryption() const { return m_preCheckEncryption; }
|
||||||
|
|
||||||
/// @brief Show "Boot partition not encrypted" warning (not explicitly disabled in the config file)?
|
/// @brief Show "Boot partition not encrypted" warning (not explicitly disabled in the config file)?
|
||||||
bool showNotEncryptedBootMessage() const { return m_showNotEncryptedBootMessage; }
|
bool showNotEncryptedBootMessage() const { return m_showNotEncryptedBootMessage; }
|
||||||
|
|
||||||
@ -199,6 +206,7 @@ private:
|
|||||||
QStringList m_requiredPartitionTableType;
|
QStringList m_requiredPartitionTableType;
|
||||||
bool m_allowZfsEncryption = true;
|
bool m_allowZfsEncryption = true;
|
||||||
bool m_allowManualPartitioning = true;
|
bool m_allowManualPartitioning = true;
|
||||||
|
bool m_preCheckEncryption = false;
|
||||||
bool m_showNotEncryptedBootMessage = true;
|
bool m_showNotEncryptedBootMessage = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -185,7 +185,6 @@ ChoicePage::init( PartitionCoreModule* core )
|
|||||||
setModelToComboBox( m_drivesCombo, core->deviceModel() );
|
setModelToComboBox( m_drivesCombo, core->deviceModel() );
|
||||||
|
|
||||||
connect( m_drivesCombo, qOverload< int >( &QComboBox::currentIndexChanged ), this, &ChoicePage::applyDeviceChoice );
|
connect( m_drivesCombo, qOverload< int >( &QComboBox::currentIndexChanged ), this, &ChoicePage::applyDeviceChoice );
|
||||||
|
|
||||||
connect( m_encryptWidget, &EncryptWidget::stateChanged, this, &ChoicePage::onEncryptWidgetStateChanged );
|
connect( m_encryptWidget, &EncryptWidget::stateChanged, this, &ChoicePage::onEncryptWidgetStateChanged );
|
||||||
connect( m_reuseHomeCheckBox, &QCheckBox::stateChanged, this, &ChoicePage::onHomeCheckBoxStateChanged );
|
connect( m_reuseHomeCheckBox, &QCheckBox::stateChanged, this, &ChoicePage::onHomeCheckBoxStateChanged );
|
||||||
|
|
||||||
@ -468,6 +467,8 @@ ChoicePage::onActionChanged()
|
|||||||
{
|
{
|
||||||
m_encryptWidget->setFilesystem( FileSystem::typeForName( m_replaceFsTypesChoiceComboBox->currentText() ) );
|
m_encryptWidget->setFilesystem( FileSystem::typeForName( m_replaceFsTypesChoiceComboBox->currentText() ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_encryptWidget->setEncryptionCheckbox( m_config->preCheckEncryption() );
|
||||||
}
|
}
|
||||||
|
|
||||||
Device* currd = selectedDevice();
|
Device* currd = selectedDevice();
|
||||||
@ -1583,7 +1584,9 @@ ChoicePage::calculateNextEnabled() const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( m_config->installChoice() != InstallChoice::Manual && m_encryptWidget->isVisible() )
|
if ( m_config->installChoice() != InstallChoice::Manual
|
||||||
|
&& (m_encryptWidget->isVisible() ||
|
||||||
|
m_encryptWidget->isEncryptionCheckboxChecked()))
|
||||||
{
|
{
|
||||||
switch ( m_encryptWidget->state() )
|
switch ( m_encryptWidget->state() )
|
||||||
{
|
{
|
||||||
|
@ -70,6 +70,16 @@ EncryptWidget::EncryptWidget( QWidget* parent )
|
|||||||
CALAMARES_RETRANSLATE_SLOT( &EncryptWidget::retranslate );
|
CALAMARES_RETRANSLATE_SLOT( &EncryptWidget::retranslate );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool EncryptWidget::isEncryptionCheckboxChecked()
|
||||||
|
{
|
||||||
|
return m_ui->m_encryptCheckBox->isChecked();
|
||||||
|
}
|
||||||
|
|
||||||
|
void EncryptWidget::setEncryptionCheckbox( bool preCheckEncrypt)
|
||||||
|
{
|
||||||
|
m_ui->m_encryptCheckBox->setChecked( preCheckEncrypt );
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
EncryptWidget::reset( bool checkVisible )
|
EncryptWidget::reset( bool checkVisible )
|
||||||
{
|
{
|
||||||
@ -170,15 +180,10 @@ EncryptWidget::updateState( const bool notify )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Encryption newState = state();
|
m_state = state();
|
||||||
|
if ( notify )
|
||||||
if ( newState != m_state )
|
|
||||||
{
|
{
|
||||||
m_state = newState;
|
Q_EMIT stateChanged( m_state );
|
||||||
if ( notify )
|
|
||||||
{
|
|
||||||
Q_EMIT stateChanged( m_state );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,8 +36,10 @@ public:
|
|||||||
|
|
||||||
explicit EncryptWidget( QWidget* parent = nullptr );
|
explicit EncryptWidget( QWidget* parent = nullptr );
|
||||||
|
|
||||||
|
void setEncryptionCheckbox( bool preCheckEncrypt = false);
|
||||||
void reset( bool checkVisible = true );
|
void reset( bool checkVisible = true );
|
||||||
|
|
||||||
|
bool isEncryptionCheckboxChecked();
|
||||||
Encryption state() const;
|
Encryption state() const;
|
||||||
void setText( const QString& text );
|
void setText( const QString& text );
|
||||||
|
|
||||||
|
@ -240,6 +240,11 @@ defaultFileSystemType: "ext4"
|
|||||||
# If nothing is specified, LUKS is enabled in automated modes.
|
# If nothing is specified, LUKS is enabled in automated modes.
|
||||||
#enableLuksAutomatedPartitioning: true
|
#enableLuksAutomatedPartitioning: true
|
||||||
|
|
||||||
|
# When enableLuksAutomatedPartitioning is true, this option will pre-check
|
||||||
|
# encryption checkbox. This option is only usefull to help people to not forget
|
||||||
|
# to cypher their disk when installing in enterprise (for exemple).
|
||||||
|
#preCheckEncryption: false
|
||||||
|
|
||||||
# Partition layout.
|
# Partition layout.
|
||||||
#
|
#
|
||||||
# This optional setting specifies a custom partition layout.
|
# This optional setting specifies a custom partition layout.
|
||||||
|
@ -34,6 +34,7 @@ properties:
|
|||||||
|
|
||||||
luksGeneration: { type: string, enum: [luks1, luks2] } # Also allows "luks" as alias of "luks1"
|
luksGeneration: { type: string, enum: [luks1, luks2] } # Also allows "luks" as alias of "luks1"
|
||||||
enableLuksAutomatedPartitioning: { type: boolean, default: false }
|
enableLuksAutomatedPartitioning: { type: boolean, default: false }
|
||||||
|
preCheckEncryption: { type: boolean, default: false }
|
||||||
|
|
||||||
allowManualPartitioning: { type: boolean, default: true }
|
allowManualPartitioning: { type: boolean, default: true }
|
||||||
showNotEncryptedBootMessage: { type: boolean, default: true }
|
showNotEncryptedBootMessage: { type: boolean, default: true }
|
||||||
|
Loading…
Reference in New Issue
Block a user