我試圖本地文件夾的 「東西」 複製到 「升級」 文件夾中ansible:複製文件夾recursivly在ansible
- name: Copy the ansible stuff
copy:
src: ./stuff
dest: ./staging
這是SUFF的direcotry結構:
- stuff
- foo
- bar
- file.txt
我得到這個錯誤:
Destination directory ./staging/stuff/foo/bar does not exist"
該文件夾staging
確實存在!它似乎有複製嵌套文件夾的問題。
爲什麼?
這並不工作:
- name: Copy the ansible stuff
shell: "cp -r ./stuff ./staging/"
試着給出絕對路徑。 – Shasha99