This commit is contained in:
2026-03-14 18:25:44 +01:00
parent a2f75cdafd
commit 99fc6ba04c
19 changed files with 703 additions and 0 deletions

16
tasks/readme.yml Normal file
View File

@@ -0,0 +1,16 @@
---
# Readme Tasks
- name: "Create Readme Directory"
ansible.builtin.file:
path: "{{ n8n_readme_path }}"
state: directory
mode: "{{ n8n_readme_mode }}"
become: true
- name: "Update Readme"
ansible.builtin.template:
src: "n8n.md.j2"
dest: "{{ n8n_readme_path }}n8n.md"
mode: "{{ n8n_readme_mode }}"
become: true