Sha256: f0e36eec7c51cd4f40c65c4b3415afa33d8fc03e627088762061439b68a83bb8
Contents?: true
Size: 774 Bytes
Versions: 90
Compression:
Stored size: 774 Bytes
Contents
- hosts: localhost vars: - testing_dir: "{{playbook_dir}}/testing" roles: - yaegashi.blockinfile tasks: - shell: echo "Detected Ansible prior to 1.8" > {{testing_dir}}/SKIPPED && false when: ansible_version is not defined - name: update symlink file without follow blockinfile: | dest={{testing_dir}}/link0.txt backup=yes follow=no content="aaa bbb ccc\nAAA BBB CCC" - name: update symlink file with follow=no blockinfile: | dest={{testing_dir}}/link1.txt backup=yes follow=no content="aaa bbb ccc\nAAA BBB CCC" - name: update symlink file with follow=yes blockinfile: | dest={{testing_dir}}/link2.txt backup=yes follow=yes content="aaa bbb ccc\nAAA BBB CCC"
Version data entries
90 entries across 90 versions & 1 rubygems