Execution
Date 14 Dec 2025 10:04:43 +0000
Duration 00:10:10.66
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.13.5
Summary
15 Hosts
603 Tasks
2357 Results
18 Plays
157 Files
0 Records

File: /home/zuul/src/opendev.org/openstack/ansible-role-systemd_service/tasks/systemd_load.yml

---
# Copyright 2021, City Network International AB.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# NOTE(noonedeadpunk): If we don't have template_arguments set, we just iterate over list with
#                      empty string as element. This won't have any effect on the results, but
#                      we reduce code duplication
- name: "Load service {{ _systemd_service_name }}"
  ansible.builtin.systemd:
    name: "{{ _systemd_service_name }}{{ template_argument }}.service"
    enabled: "{{ service.enabled | default(systemd_service_enabled) }}"
    state: "{{ (service.timer is defined) | ternary(omit, (service.state | default(omit))) }}"
  when:
    - service.load | default(True)
  loop: "{{ service.template_arguments | default(['']) }}"
  loop_control:
    loop_var: template_argument
    label: "{{ loop_label | to_json }}"
  vars:
    loop_label:
      name: "{{ _systemd_service_name }}{{ template_argument }}.service"
      enabled: "{{ service.enabled | default(systemd_service_enabled) }}"
      state: "{{ (service.timer is defined) | ternary('omit', (service.state | default('omit'))) }}"

- name: "Load timer {{ _systemd_service_name }}"
  ansible.builtin.systemd:
    name: "{{ _systemd_service_name }}{{ template_argument }}.timer"
    enabled: "{{ service.enabled | default(systemd_service_enabled) }}"
    state: "{{ service.timer.state | default(omit) }}"
  when:
    - service.timer is defined
  with_items: "{{ service.template_arguments | default(['']) }}"
  loop_control:
    loop_var: template_argument
    label: "{{ loop_label | to_json }}"
  vars:
    loop_label:
      name: "{{ _systemd_service_name }}{{ template_argument }}.timer"
      enabled: "{{ service.enabled | default(systemd_service_enabled) }}"
      state: "{{ service.timer.state | default('omit') }}"