copy tests: only create recursive symlink in tests (#35073)
This commit is contained in:
parent
e5c6708d39
commit
9106284c1c
2 changed files with 12 additions and 1 deletions
|
@ -1 +0,0 @@
|
|||
../
|
|
@ -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…
Reference in a new issue