diff --git a/changelogs/fragments/9891-systemd_info-add_timer.yml b/changelogs/fragments/9891-systemd_info-add_timer.yml new file mode 100644 index 0000000000..e6239c0dfa --- /dev/null +++ b/changelogs/fragments/9891-systemd_info-add_timer.yml @@ -0,0 +1,2 @@ +minor_changes: + - systemd_info - extend support to timer units (https://github.com/ansible-collections/community.general/pull/9891). \ No newline at end of file diff --git a/plugins/modules/systemd_info.py b/plugins/modules/systemd_info.py index 2bf06a92d6..d87df32780 100644 --- a/plugins/modules/systemd_info.py +++ b/plugins/modules/systemd_info.py @@ -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 = {} diff --git a/tests/integration/targets/systemd_info/tasks/tests.yml b/tests/integration/targets/systemd_info/tasks/tests.yml index c080595445..06c63dbd91 100644 --- a/tests/integration/targets/systemd_info/tasks/tests.yml +++ b/tests/integration/targets/systemd_info/tasks/tests.yml @@ -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 }}" \ No newline at end of file + 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." \ No newline at end of file