Set timezone on the live system too.

This commit is contained in:
Teo Mrnjavac 2016-08-26 17:20:48 +02:00
parent f2a087c348
commit 1a1657a7fc

View File

@ -25,6 +25,7 @@
#include "GlobalStorage.h"
#include "JobQueue.h"
#include "LCLocaleDialog.h"
#include "Settings.h"
#include <QBoxLayout>
#include <QComboBox>
@ -471,6 +472,15 @@ LocalePage::updateGlobalStorage()
Calamares::JobQueue::instance()->globalStorage()
->insert( "locationZone", location.zone );
// If we're in chroot mode (normal install mode), then we immediately set the
// timezone on the live system.
if ( Calamares::Settings::instance()->doChroot() )
{
QProcess ::execute( "timedatectl", // depends on systemd
{ "set-timezone",
location.region + '/' + location.zone } );
}
m_selectedLocaleConfiguration = guessLocaleConfiguration();
updateLocaleLabels();
}