Skip to content

Instantly share code, notes, and snippets.

@txomon
Created October 30, 2019 19:11
Show Gist options
  • Save txomon/76701430151361ff7fa460ddb109a0ab to your computer and use it in GitHub Desktop.
Save txomon/76701430151361ff7fa460ddb109a0ab to your computer and use it in GitHub Desktop.
Example declarative metamodule for ansible
- name: Make sure only three files exist in /myfolder
declarative:
items:
- a
- b
- c
state:
command: find /myfolder/ | tail -n +2 | basename
extra_item:
file:
path: /myfolder/{{ item }}
state: absent
missing_item:
file:
path: /myfolder/{{ item }}
state: touch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment