[PR #9891/4a2cc711 backport][stable-10] systemd_info - extend support to timer unit (#9894)

systemd_info - extend support to timer unit (#9891)

* systemd_info - extend support to timer unit

* systemd_info - add changelogs fragments

* systemd_info - fix description and base_props

(cherry picked from commit 4a2cc71141)

Co-authored-by: Nocchia <133043574+NomakCooper@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2025-03-16 21:33:28 +01:00 committed by GitHub
parent 6534db4942
commit 8f8b1ee4ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 48 additions and 7 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- systemd_info - extend support to timer units (https://github.com/ansible-collections/community.general/pull/9891).

View file

@ -13,9 +13,11 @@ DOCUMENTATION = r'''
module: systemd_info
short_description: Gather C(systemd) unit info
description:
- This module gathers info about systemd units (services, targets, sockets, mount).
- This module gathers info about systemd units (services, targets, sockets, mounts, timers).
- Timer units are supported since community.general 10.5.0.
- It runs C(systemctl list-units) (or processes selected units) and collects properties
for each unit using C(systemctl show).
- In case a unit has multiple properties with the same name, only the value of the first one will be collected.
- Even if a unit has a RV(units.loadstate) of V(not-found) or V(masked), it is returned,
but only with the minimal properties (RV(units.name), RV(units.loadstate), RV(units.activestate), RV(units.substate)).
- When O(unitname) and O(extra_properties) are used, the module first checks if the unit exists,
@ -27,7 +29,8 @@ options:
unitname:
description:
- List of unit names to process.
- It supports C(.service), C(.target), C(.socket), and C(.mount) units type.
- It supports C(.service), C(.target), C(.socket), C(.mount) and C(.timer) units type.
- C(.timer) units are supported since community.general 10.5.0.
- Each name must correspond to the full name of the C(systemd) unit or to a wildcard expression like V('ssh*') and V('*.service').
- Wildcard expressions in O(unitname) are supported since community.general 10.5.0.
type: list
@ -49,7 +52,7 @@ extends_documentation_fragment:
EXAMPLES = r'''
---
# Gather info for all systemd services, targets, sockets and mount
# Gather info for all systemd services, targets, sockets, mount and timer
- name: Gather all systemd unit info
community.general.systemd_info:
register: results
@ -72,6 +75,15 @@ EXAMPLES = r'''
unitname:
- 'systemd-*'
register: results
# Gather info for systemd-tmpfiles-clean.timer with extra properties
- name: Gather info of systemd-tmpfiles-clean.timer and extra AccuracyUSec
community.general.systemd_info:
unitname:
- systemd-tmpfiles-clean.timer
extra_properties:
- AccuracyUSec
register: results
'''
RETURN = r'''
@ -255,6 +267,8 @@ def determine_category(unit):
return 'socket'
elif unit.endswith('.mount'):
return 'mount'
elif unit.endswith('.timer'):
return 'timer'
else:
return None
@ -275,7 +289,8 @@ def get_category_base_props(category):
'service': ['FragmentPath', 'UnitFileState', 'UnitFilePreset', 'MainPID', 'ExecMainPID'],
'target': ['FragmentPath', 'UnitFileState', 'UnitFilePreset'],
'socket': ['FragmentPath', 'UnitFileState', 'UnitFilePreset'],
'mount': ['Where', 'What', 'Options', 'Type']
'mount': ['Where', 'What', 'Options', 'Type'],
'timer': ['FragmentPath', 'UnitFileState', 'UnitFilePreset'],
}
return base_props.get(category, [])
@ -364,7 +379,7 @@ def main():
state_props = ['LoadState', 'ActiveState', 'SubState']
results = {}
unit_types = ["service", "target", "socket", "mount"]
unit_types = ["service", "target", "socket", "mount", "timer"]
list_output = list_units(base_runner, unit_types)
units_info = {}

View file

@ -3,7 +3,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Gather all units from shell
ansible.builtin.command: systemctl list-units --no-pager --type service,target,socket,mount --all --plain --no-legend
ansible.builtin.command: systemctl list-units --no-pager --type service,target,socket,mount,timer --all --plain --no-legend
register: all_units
- name: Assert command run successfully
@ -136,4 +136,28 @@
- unique_keys | length == all_keys | length
vars:
all_keys: "{{ result_multi.units | dict2items | map(attribute='key') | list }}"
unique_keys: "{{ all_keys | unique }}"
unique_keys: "{{ all_keys | unique }}"
- name: Gather info of systemd-tmpfiles-clean.timer and extra AccuracyUSec
community.general.systemd_info:
unitname:
- systemd-tmpfiles-clean.timer
extra_properties:
- AccuracyUSec
register: result_timer
- name: Check timer unit properties
ansible.builtin.assert:
that:
- result_timer.units is defined
- result_timer.units['systemd-tmpfiles-clean.timer'] is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].name is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].loadstate is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].activestate is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].substate is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].fragmentpath is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].unitfilestate is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].unitfilepreset is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].accuracyusec is defined
- result_timer.units['systemd-tmpfiles-clean.timer'].accuracyusec | length > 0
success_msg: "Success: All properties collected."