dokuwiki_inventory/tasks/main.yml

23 lines
447 B
YAML
Raw Permalink Normal View History

2020-11-25 09:41:02 +00:00
---
- name: "create inventory folder {{ doku_path }}"
local_action:
module: file
path: "{{ doku_path }}"
state: directory
mode: 0755
run_once: True
- name: write wiki page
local_action:
module: template
src: host.j2
dest: "{{ doku_path }}/{{ inventory_hostname|lower }}.txt"
2020-11-25 09:41:02 +00:00
- name: write index page
local_action:
module: template
src: start.j2
dest: "{{ doku_path }}/start.txt"
run_once: True