copy tests: only create recursive symlink in tests (#35073)
(cherry picked from commit 9106284c1c
)
This commit is contained in:
parent
02e5c0d0ca
commit
159b0f628d
2 changed files with 15 additions and 1 deletions
|
@ -1 +0,0 @@
|
||||||
../
|
|
|
@ -10,6 +10,15 @@
|
||||||
# output_dir is hardcoded in test/runner/lib/executor.py and created there
|
# output_dir is hardcoded in test/runner/lib/executor.py and created there
|
||||||
remote_dir: '{{ output_dir }}'
|
remote_dir: '{{ output_dir }}'
|
||||||
|
|
||||||
|
- 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
|
- name: Create remote unprivileged remote user
|
||||||
user:
|
user:
|
||||||
name: '{{ remote_unprivileged_user }}'
|
name: '{{ remote_unprivileged_user }}'
|
||||||
|
@ -46,6 +55,12 @@
|
||||||
state: absent
|
state: absent
|
||||||
connection: local
|
connection: local
|
||||||
|
|
||||||
|
- name: Remove circular symbolic link
|
||||||
|
file:
|
||||||
|
path: subdir/subdir1/circles
|
||||||
|
state: absent
|
||||||
|
connection: local
|
||||||
|
|
||||||
- name: Remote unprivileged remote user
|
- name: Remote unprivileged remote user
|
||||||
user:
|
user:
|
||||||
name: '{{ remote_unprivileged_user }}'
|
name: '{{ remote_unprivileged_user }}'
|
||||||
|
|
Loading…
Reference in a new issue