ansible-roles/evolinux-todo/tasks/main.yml
Jérémy Lecour c1afb68d19 Add an "evolinux-todo" role
It makes sure there is a /etc/evolinux/todo.txt where we can append 
tasks to be done manually.

It has a task to output the content of the file, for exemple at the end 
of a playbook run.
2018-08-24 14:31:11 +02:00

15 lines
250 B
YAML

---
- name: /etc/evolinux is present
file:
dest: /etc/evolinux
mode: "0700"
state: directory
- name: /etc/evolinux/todo.txt is present
copy:
src: todo.defaults.txt
dest: /etc/evolinux/todo.txt
mode: "0640"
force: no