You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible_heinlein/roles/dokuwiki_inventory/tasks/main.yml

21 lines
422 B

---
- name: Create Inventory Folder
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 }}.txt"
- name: Write Index Page
local_action:
module: template
src: start.j2
dest: "{{ doku_path }}/start.txt"
run_once: True