copy tests: only create recursive symlink in tests (#35073)

pull/32960/merge
Jordan Borean 6 years ago committed by GitHub
parent e5c6708d39
commit 9106284c1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,6 +13,12 @@
- file: path={{local_temp_dir}} state=directory
name: ensure temp dir exists
# file cannot do this properly, use command instead
- name: Create ciruclar symbolic link
command: ln -s ../ circles
args:
chdir: '{{role_path}}/files/subdir/subdir1'
- name: Create remote unprivileged remote user
user:
name: '{{ remote_unprivileged_user }}'
@ -49,6 +55,12 @@
state: absent
connection: local
- name: Remove circular symbolic link
file:
path: subdir/subdir1/circles
state: absent
connection: local
- name: Remote unprivileged remote user
user:
name: '{{ remote_unprivileged_user }}'

Loading…
Cancel
Save