aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ManaTools/Shared/Services.pm20
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/ManaTools/Shared/Services.pm b/lib/ManaTools/Shared/Services.pm
index abef8c3..c0f06c5 100644
--- a/lib/ManaTools/Shared/Services.pm
+++ b/lib/ManaTools/Shared/Services.pm
@@ -114,7 +114,25 @@ sub _dbusObjectInitialize {
$self->dbus_systemd1_object($self->dbus_systemd1_service->get_object("/org/freedesktop/systemd1"));
}
+has 'include_static_services' => (
+ is => 'rw',
+ isa => 'Bool',
+ default => 0
+);
+
+#=============================================================
+
+=head2 attributes
+=head3 service_info
+
+ A HashRef collecting all the service information.
+ if include_static_services (default is false) is set also static
+ services are included.
+
+=cut
+
+#=============================================================
has 'service_info' => (
is => 'rw',
traits => ['Hash'],
@@ -149,7 +167,7 @@ sub _serviceInfoInitialization {
$st = 'enabled';
}
}
- if ($st && $st ne 'static') {
+ if ($st && ($self->include_static_services() || $st ne 'static')) {
$services{$name} = {
'name' => $s->[0],
'description' => $s->[1],