diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ManaTools/Shared/TimeZone.pm | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/lib/ManaTools/Shared/TimeZone.pm b/lib/ManaTools/Shared/TimeZone.pm index 3be11d7..46810db 100644 --- a/lib/ManaTools/Shared/TimeZone.pm +++ b/lib/ManaTools/Shared/TimeZone.pm @@ -203,11 +203,37 @@ has 'ntpServiceConfig' => ( init_arg => undef, ); -# has 'dmlist' => ( -# is => 'rw', -# isa => 'ArrayRef', -# builder => '_build_dmlist', -# ); +#============================================================= + +=head2 attribute + +=head3 ntpServiceList + + This attribute is a ArrayRef containing configured ntp + service into the system, retrieving info from services. + +=cut + +#============================================================= +has 'ntpServiceList' => ( + is => 'rw', + isa => 'ArrayRef', + lazy => 1, + builder => '_build_ntpServiceList', + init_arg => undef, +); + +# retrieves the installed ntp service list +sub _build_ntpServiceList { + my $self = shift(); + + my @list = (); + for my $pair ($self->ntpServiceConfigPairs()) { + push @list, $pair->[0] if eval {$self->sh_services->dbus_systemd1_object->GetUnitFileState( $pair->[0] . ".service")}; + } + + return \@list; +} #============================================================= |