aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ManaTools/Shared/TimeZone.pm
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2015-03-25 21:52:11 +0059
committerAngelo Naselli <anaselli@linux.it>2015-03-25 21:52:11 +0059
commit2c0df810a598bb046966520e3c66e9f8fb266248 (patch)
treeda92ac35e5130122c48c47ede69ae9f738ca253f /lib/ManaTools/Shared/TimeZone.pm
parentc6df701de37d5d9345f77bc048b8f31901187b67 (diff)
downloadcolin-keep-2c0df810a598bb046966520e3c66e9f8fb266248.tar
colin-keep-2c0df810a598bb046966520e3c66e9f8fb266248.tar.gz
colin-keep-2c0df810a598bb046966520e3c66e9f8fb266248.tar.bz2
colin-keep-2c0df810a598bb046966520e3c66e9f8fb266248.tar.xz
colin-keep-2c0df810a598bb046966520e3c66e9f8fb266248.zip
left ntp_configuration_file attribute only for test purpose
used getNTPServiceConfig instead
Diffstat (limited to 'lib/ManaTools/Shared/TimeZone.pm')
-rw-r--r--lib/ManaTools/Shared/TimeZone.pm25
1 files changed, 9 insertions, 16 deletions
diff --git a/lib/ManaTools/Shared/TimeZone.pm b/lib/ManaTools/Shared/TimeZone.pm
index 98ebd2a..544759a 100644
--- a/lib/ManaTools/Shared/TimeZone.pm
+++ b/lib/ManaTools/Shared/TimeZone.pm
@@ -93,10 +93,9 @@ has 'timezone_prefix' => (
=head3 ntp_configuration_file
optional parameter to set the ntp server configuration file,
- default value is evaluated in the following order
- /etc/chrony.conf if found
- /etc/ntp.conf if found and not found chrony
- /etc/systemd/timesyncd.conf default
+ it meant to be for testing purpose, do not set or it will
+ be considered as configuration file despite of what the ntp
+ service is.
=cut
@@ -105,17 +104,8 @@ has 'timezone_prefix' => (
has 'ntp_configuration_file' => (
is => 'rw',
isa => 'Str',
- lazy => 1,
- builder => '_ntp_configuration_file_init',
);
-sub _ntp_configuration_file_init {
- my $self = shift;
-
- my $curr = $self->ntp_program;
-
- return $self->getNTPServiceConfig($curr);
-}
#=============================================================
@@ -856,7 +846,9 @@ Returns the current ntp server address read from configuration file
sub ntpCurrentServer {
my $self = shift;
- MDK::Common::Func::find { $_ ne '127.127.1.0' } map { MDK::Common::Func::if_(/^\s*server\s+(\S*)/, $1) } MDK::Common::File::cat_($self->ntp_configuration_file);
+ my $configFile = $self->ntp_configuration_file || $self->getNTPServiceConfig($self->ntp_program);
+
+ MDK::Common::Func::find { $_ ne '127.127.1.0' } map { MDK::Common::Func::if_(/^\s*server\s+(\S*)/, $1) } MDK::Common::File::cat_($configFile);
}
#=============================================================
@@ -932,11 +924,12 @@ sub isNTPRunning {
sub setNTPConfiguration {
my ($self, $server) = @_;
- my $f = $self->ntp_configuration_file;
+ $DB::single = 1;
+ my $f = $self->ntp_configuration_file || $self->getNTPServiceConfig($self->ntp_program);;
-f $f or return;
die $self->loc->N("user does not have the rights to change configuration file, skipped")
- if ($EUID != 0);
+ if (!(-w $f));
my $pool_match = qr/\.pool\.ntp\.org$/;
my @servers = $server =~ $pool_match ? (map { "$_.$server" } 0 .. 2) : $server;