diff --git a/Structuring Ansible Playbooks/Using Include and Import/03/include.yaml b/Structuring Ansible Playbooks/Using Include and Import/03/include.yaml deleted file mode 100755 index 6f6a67b..0000000 --- a/Structuring Ansible Playbooks/Using Include and Import/03/include.yaml +++ /dev/null @@ -1,16 +0,0 @@ ---- -# YAML documents begin with the document separator --- - -- set_fact: - include_var: foo - -- name: 2nd Task - debug: - msg: 2nd Task - -- name: 3rd Task - debug: - msg: 3rd Task - -# Three dots indicate the end of a YAML document -...