|
| 1 | +# Get systemd version and features |
| 2 | +# |
| 3 | +# This file is part of Ansible |
| 4 | +# |
| 5 | +# Ansible is free software: you can redistribute it and/or modify |
| 6 | +# it under the terms of the GNU General Public License as published by |
| 7 | +# the Free Software Foundation, either version 3 of the License, or |
| 8 | +# (at your option) any later version. |
| 9 | +# |
| 10 | +# Ansible is distributed in the hope that it will be useful, |
| 11 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | +# GNU General Public License for more details. |
| 14 | +# |
| 15 | +# You should have received a copy of the GNU General Public License |
| 16 | +# along with Ansible. If not, see <http://www.gnu.org/licenses/>. |
| 17 | + |
| 18 | +from __future__ import annotations |
| 19 | + |
| 20 | +import ansible.module_utils.compat.typing as t |
| 21 | + |
| 22 | +from ansible.module_utils.facts.collector import BaseFactCollector |
| 23 | +from ansible.module_utils.facts.system.service_mgr import ServiceMgrFactCollector |
| 24 | + |
| 25 | + |
| 26 | +class SystemdFactCollector(BaseFactCollector): |
| 27 | + name = "systemd" |
| 28 | + _fact_ids = set() # type: t.Set[str] |
| 29 | + |
| 30 | + def collect(self, module=None, collected_facts=None): |
| 31 | + systemctl_bin = module.get_bin_path("systemctl") |
| 32 | + if systemctl_bin and ServiceMgrFactCollector.is_systemd_managed(module): |
| 33 | + rc, stdout, stderr = module.run_command( |
| 34 | + [systemctl_bin, "--version"], |
| 35 | + check_rc=False, |
| 36 | + ) |
| 37 | + |
| 38 | + systemd_facts = {} |
| 39 | + |
| 40 | + if rc != 0: |
| 41 | + return systemd_facts |
| 42 | + |
| 43 | + systemd_facts["systemd"] = {} |
| 44 | + systemd_facts["systemd"]["features"] = str(stdout.split("\n")[1]) |
| 45 | + systemd_facts["systemd"]["version"] = int(stdout.split(" ")[1]) |
| 46 | + |
| 47 | + return systemd_facts |
0 commit comments