summaryrefslogtreecommitdiffstats
path: root/test/fixtures/formatting-prettier/fmt-4.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/formatting-prettier/fmt-4.yml')
-rw-r--r--test/fixtures/formatting-prettier/fmt-4.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/fixtures/formatting-prettier/fmt-4.yml b/test/fixtures/formatting-prettier/fmt-4.yml
new file mode 100644
index 0000000..5ded596
--- /dev/null
+++ b/test/fixtures/formatting-prettier/fmt-4.yml
@@ -0,0 +1,22 @@
+---
+- name: Gather all legacy facts
+ cisco.ios.ios_facts:
+
+- name: Update modification and access time of given file
+ ansible.builtin.file:
+ path: /etc/some_file
+ state: file
+ modification_time: now
+ access_time: now
+
+- name: Disable ufw service
+ ansible.builtin.service:
+ name: ufw
+ enabled: false
+ state: stopped
+ when: '"ufw" in services'
+
+- name: Remove file (delete file)
+ ansible.builtin.file:
+ path: /etc/foo.txt
+ state: absent