4e68dde47a
Systemd service element does contain quite bug dictionary and output of it is not really useful for most tasks. To make output smaller and at the same time more informative we leverage loop labels. With that we convert all with_items to be proper loops. Change-Id: I90d2fb4110d2a47af184e90382538e015eb87b13
52 lines
2.2 KiB
YAML
52 lines
2.2 KiB
YAML
---
|
|
# 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 }}"
|
|
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 }}"
|
|
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') }}"
|