我正在尝试制作一个通过ssh连接到服务器并发送文件的ansible剧本。
我的大部分Google搜索都没有得到具体的结果。
file
我希望将文件复制到ssh服务器。
答案 0 :(得分:1)
现在我给您一些参考,这是您的剧本的更正
---
- name: My first play to copy files
become: true
hosts: all
remote_user: artur
tasks:
- name: Example copying file with owner and permissions
copy:
src: /Users/artur/Desktop/sublime/projects/scripts/grep_error.py
dest: /home/artur/grep_error.py
owner: artur
group: UnixUsers
mode: 0420
- name: I'm just a dummy task to show you a play can go on
debug:
msg: I'm a dummy task