Skip to content
Snippets Groups Projects
Commit 57ce27a6 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

doc: clarify task names

parent f12ebbc7
Branches
No related tags found
1 merge request!1ND-1759
......@@ -29,7 +29,7 @@
allow_unauthenticated: "true"
tags: [subapp]
- name: Systemd-Unitfiles installieren
- name: Systemd-Unitfiles installieren (Templates)
template:
src: "etc/systemd/user/{{ item }}.j2"
dest: "/etc/systemd/user/{{ item }}"
......@@ -41,7 +41,7 @@
- "subapp.service"
tags: [systemd, subapp]
- name: Systemd-Unitfiles installieren
- name: Systemd-Unitfiles installieren (Files)
copy:
src: "etc/systemd/user/{{ item }}"
dest: "/etc/systemd/user/{{ item }}"
......@@ -98,7 +98,6 @@
tags: [subapp]
tags: [subapp, gsa]
### VORBEREITUNGEN SUBMISSION APPLICATION ###
- name: Quarantaeneverzeichnis & Lockverzeichnis anlegen
file:
path: "{{ item }}"
......@@ -172,21 +171,21 @@
no_log: true
tags: [subapp]
- name: enable Service
- name: enable Stichprobe Services
command: "systemctl enable /etc/systemd/user/stichprobe-daily-report.service" # noqa 303
loop: "{{ lookup('dict', vault_stichprobe_hosts) }}"
when: ansible_hostname == item.key
no_log: true
tags: [subapp]
- name: enable Timer
- name: enable Stichprobe Timers
command: "systemctl enable /etc/systemd/user/stichprobe-daily-report.timer" # noqa 303
loop: "{{ lookup('dict', vault_stichprobe_hosts) }}"
when: ansible_hostname == item.key
no_log: true
tags: [subapp]
- name: restart services & timers
- name: restart Stichprobe Timers
systemd:
name: "stichprobe-daily-report.timer"
state: restarted
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment