- no need to specify `local_action` on `local` hosts
- no need to delegate to `localhost` on `local` hosts
Change-Id: I9e7843ce8ba414a786784943b8c253d615271233
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
- hosts: local
tasks:
- name: create system information report
- local_action: template src=templates/system-info.j2 dest=reports/system-info
- delegate_to: localhost
- # TODO(yujunz) push test result to testapi
+ template: src=templates/system-info.j2 dest=reports/system-info
- name: create qpi report
template: src=templates/qpi-report.j2 dest=reports/qpi-report
+ # TODO(yujunz) push test result to testapi