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.

25 lines
594 B

---
# tasks file for dotqmail
- name: generate dotqmail-files
template:
src: templates/dotqmail.j2
dest: "{{ansible_env.HOME}}/.qmail-{{item.key}}"
mode: 0644
with_dict: "{{dotqmail_files}}"
- name: Fetch all dotqmail files
find:
paths: "{{ansible_env.HOME}}/"
patterns: ".qmail-*"
hidden: True
register: old_dotqmail_files
- name: Test
debug:
msg: "File: {{currentfile}}"
vars:
currentfile: "{{item.path|basename|replace(dotqmail_prefix + '-','')}}"
with_items: "{{old_dotqmail_files.files}}"
when: dotqmail_files[currentfile] is not defined