diff options
author | Lee Garrett <leegarrett@users.noreply.github.com> | 2024-07-27 18:16:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 18:16:34 +0200 |
commit | 7e3916b767e1f02fae67630ce7e81bdf47825282 (patch) | |
tree | 6e79eda7d90239ddd18ef4883f2880b2f2fc3098 /test/integration/targets/unarchive | |
parent | Set LANGUAGE env variable is set to a non-English locale (#83671) (diff) | |
download | ansible-7e3916b767e1f02fae67630ce7e81bdf47825282.tar.xz ansible-7e3916b767e1f02fae67630ce7e81bdf47825282.zip |
Typo fixes and other bits and bobs (#83672)
Co-authored-by: Lee Garrett <lgarrett@rocketjump.eu>
Diffstat (limited to 'test/integration/targets/unarchive')
3 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/unarchive/tasks/test_missing_binaries.yml b/test/integration/targets/unarchive/tasks/test_missing_binaries.yml index 39bf4df5ed..8d9256e78c 100644 --- a/test/integration/targets/unarchive/tasks/test_missing_binaries.yml +++ b/test/integration/targets/unarchive/tasks/test_missing_binaries.yml @@ -80,7 +80,7 @@ - zip - tar - - name: Reinsntall zip binaries + - name: Reinstall zip binaries package: name: - zip diff --git a/test/integration/targets/unarchive/tasks/test_parent_not_writeable.yml b/test/integration/targets/unarchive/tasks/test_parent_not_writeable.yml index bfb082c6aa..9e0351e565 100644 --- a/test/integration/targets/unarchive/tasks/test_parent_not_writeable.yml +++ b/test/integration/targets/unarchive/tasks/test_parent_not_writeable.yml @@ -4,7 +4,7 @@ ignore_errors: True register: unarchive04 -- name: fail if the proposed destination file exists for safey +- name: fail if the proposed destination file exists for safety fail: msg: /tmp/foo-unarchive.txt already exists, aborting when: unarchive04.stat.exists diff --git a/test/integration/targets/unarchive/tasks/test_symlink.yml b/test/integration/targets/unarchive/tasks/test_symlink.yml index a511ddde82..5b3b7ceec3 100644 --- a/test/integration/targets/unarchive/tasks/test_symlink.yml +++ b/test/integration/targets/unarchive/tasks/test_symlink.yml @@ -3,7 +3,7 @@ path: "{{ remote_tmp_dir }}/test-unarchive-tar-gz" state: directory -- name: Create a symlink to the detination dir +- name: Create a symlink to the destination dir file: path: "{{ remote_tmp_dir }}/link-to-unarchive-dir" src: "{{ remote_tmp_dir }}/test-unarchive-tar-gz" |