Thomas Stallinger a998949081 feat: initial ansible-content repo with placeholder roles for agent verification
Ein Platzhalter je Merkmal aus der Schulcomputer-Bereitstellungsvorlage (guest-session, brave-fedora, onlyoffice-fedora), zum Beweis der ansible-pull-Pipeline des Provisioning Agent.
2026-08-01 15:35:21 +02:00

12 lines
346 B
YAML

- name: Ensure marker directory exists
ansible.builtin.file:
path: /run/tuxflotte/agent/applied
state: directory
mode: "0755"
- name: Record that the onlyoffice-fedora role ran
ansible.builtin.copy:
dest: /run/tuxflotte/agent/applied/onlyoffice-fedora.marker
content: "{{ ansible_date_time.iso8601 }}\n"
mode: "0644"